mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-04 13:08:05 +03:00
15 lines
353 B
TOML
15 lines
353 B
TOML
[workspace]
|
|
members =[
|
|
"packages/hurl",
|
|
"packages/hurlfmt",
|
|
"packages/hurl_core",
|
|
]
|
|
|
|
|
|
[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.
|
|
|