hurl/Cargo.toml

23 lines
602 B
TOML
Raw Normal View History

2020-11-02 20:30:13 +03:00
[workspace]
members = [
2020-11-02 20:30:13 +03:00
"packages/hurl",
"packages/hurlfmt",
"packages/hurl_core",
]
resolver = "2"
2022-09-06 16:51:51 +03:00
[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.
2024-03-04 17:10:06 +03:00
# 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"