mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
23 lines
602 B
TOML
23 lines
602 B
TOML
[workspace]
|
|
members = [
|
|
"packages/hurl",
|
|
"packages/hurlfmt",
|
|
"packages/hurl_core",
|
|
]
|
|
resolver = "2"
|
|
|
|
[profile.release]
|
|
lto = true # Enable Link Time Optimization
|
|
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
|
|
panic = "abort" # Abort on panic
|
|
strip = true # Automatically strip symbols from the binary.
|
|
|
|
# See https://rust-lang.github.io/rust-clippy/master/index.html
|
|
[workspace.lints.rust]
|
|
warnings = "deny"
|
|
|
|
[workspace.lints.clippy]
|
|
empty_structs_with_brackets = "deny"
|
|
manual_string_new = "deny"
|
|
semicolon_if_nothing_returned = "deny"
|