diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..8f0e019 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[workspace] +members = [ + "crates/*" +] +resolver = "3" + +[profile.release] +opt-level = 3 +codegen-units = 1 +debug = false +strip = "symbols" +panic = "abort" +lto = "thin" + +[profile.release-profile] +inherits = "release" +debug = true +strip = false |