uniffi-rs-fullstack-examples/Cargo.toml

18 lines
577 B
TOML
Raw Permalink Normal View History

[workspace]
resolver = "2"
members = ["hello", "uniffi-bindgen"]
default-members = ["hello"]
[profile.release]
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
lto = true # Enable Link Time Optimization
opt-level = 3 # All optimizations # https://doc.rust-lang.org/cargo/reference/profiles.html#opt-level
# panic = 'abort' # Abort on panic
debug = true # Enable debug symbols. For example, we can use `dwarfdump` to check crash traces.
[workspace.dependencies]
2023-10-21 17:47:48 +08:00
uniffi = { version = "0.25" }
uniffi_bindgen = { version = "0.25" }