hurl/Cargo.toml

15 lines
353 B
TOML
Raw Normal View History

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