21 lines
1.1 KiB
TOML
21 lines
1.1 KiB
TOML
[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]
|
|
# https://github.com/bitwarden/sdk/blame/master/Cargo.toml
|
|
uniffi = { git = "https://github.com/mozilla/uniffi-rs", rev = "e20b9c2b72144ef51a381c6b321ac810a4fbfdbe" }
|
|
uniffi_build = { git = "https://github.com/mozilla/uniffi-rs", rev = "e20b9c2b72144ef51a381c6b321ac810a4fbfdbe" }
|
|
uniffi_bindgen = { git = "https://github.com/mozilla/uniffi-rs", rev = "e20b9c2b72144ef51a381c6b321ac810a4fbfdbe" }
|
|
uniffi_core = { git = "https://github.com/mozilla/uniffi-rs", rev = "e20b9c2b72144ef51a381c6b321ac810a4fbfdbe" }
|
|
uniffi_macros = { git = "https://github.com/mozilla/uniffi-rs", rev = "e20b9c2b72144ef51a381c6b321ac810a4fbfdbe" } |