simplestacknavigation/Cargo.toml

30 lines
883 B
TOML

[package]
name = "simplestacknavigation"
version = "0.0.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.small]
inherits = "release"
#debug = true
opt-level = 'z' # Optimize for size
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
strip = true
[dependencies]
# makepad-widgets = { path = "../../../../sample/makepad/widgets", version = "0.6.0" }
# makepad-widgets = { git = "https://github.com/makepad/makepad/", branch = "rik" }
# makepad-widgets = { path = "../../../samples/makepad/widgets", version = "0.6.0" }
makepad-widgets = { path = "../makepad/widgets", version = "0.6.0" }