13 lines
447 B
TOML
13 lines
447 B
TOML
[workspace]
|
|
members = ["bdk-ffi"]
|
|
default-members = ["bdk-ffi"]
|
|
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*
|