12 lines
484 B
TOML
12 lines
484 B
TOML
[workspace]
|
|
members = ["bdk-ffi", "bdk-ffi-bindgen"]
|
|
default-members = ["bdk-ffi", "bdk-ffi-bindgen"]
|
|
exclude = ["api-docs", "bdk-android", "bdk-jvm", "bdk-python", "bdk-swift"]
|
|
|
|
[profile.release-smaller]
|
|
inherits = "release"
|
|
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 # Strip symbols from binary* |