24 lines
389 B
TOML
24 lines
389 B
TOML
|
cargo-features = ["profile-rustflags"]
|
||
|
[package]
|
||
|
name = "zieltakt"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
iced = { version = "0.13.1" }
|
||
|
|
||
|
[profile.dev]
|
||
|
incremental = true
|
||
|
rustflags = ["-Zthreads=8"]
|
||
|
|
||
|
[profile.dev.package."*"]
|
||
|
opt-level = 3
|
||
|
|
||
|
[profile.release]
|
||
|
codegen-units = 1
|
||
|
lto = true
|
||
|
opt-level = "s"
|
||
|
panic = "abort"
|
||
|
strip = true
|
||
|
rustflags = ["-Cdebuginfo=0", "-Zthreads=8"]
|