2020-11-02 20:30:13 +03:00
|
|
|
[workspace]
|
2023-09-06 17:59:33 +03:00
|
|
|
members = [
|
2020-11-02 20:30:13 +03:00
|
|
|
"packages/hurl",
|
|
|
|
"packages/hurlfmt",
|
|
|
|
"packages/hurl_core",
|
|
|
|
]
|
2023-09-06 17:59:33 +03:00
|
|
|
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"
|