diff options
| author | pml68 <contact@pml68.dev> | 2025-06-16 01:07:04 +0200 |
|---|---|---|
| committer | pml68 <contact@pml68.dev> | 2025-06-16 01:07:04 +0200 |
| commit | 7398f64d515ceec4789deacde2e2ecff5175d8bc (patch) | |
| tree | d48c0b636c29b3c628d492fb88743519edfddd97 /Cargo.toml | |
| parent | ci: test build on MSRV, build with `release` profile (diff) | |
| download | iced-builder-7398f64d515ceec4789deacde2e2ecff5175d8bc.tar.gz | |
ci: separate `Lint` and `Test` workflows
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -55,10 +55,6 @@ windows_exe_info = "0.5" [profile.dev] opt-level = 1 -[profile.ci] -inherits = "dev" -opt-level = 0 - [profile.dev.package."*"] opt-level = 3 @@ -66,6 +62,15 @@ opt-level = 3 lto = true strip = true +[profile.release-opt] +inherits = "release" +codegen-units = 1 +debug = false +incremental = false +opt-level = 3 +overflow-checks = false +strip = "debuginfo" + [[bin]] name = "iced-builder" path = "src/main.rs" |
