hurl/Cargo.toml
jcamiel ffa4052f32
Specify resolver version.
This solves the build warnings:
```
warning: some crates are on edition 2021 which defaults to `resolver = "2"`, but virtual workspaces default to `resolver = "1"`
note: to keep the current resolver, specify `workspace.resolver = "1"` in the workspace root's manifest
note: to use the edition 2021 resolver, specify `workspace.resolver = "2"` in the workspace root's manifest
``
2023-09-06 16:04:15 +00:00

15 lines
368 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.