rust-lightning/Cargo.toml

30 lines
706 B
TOML
Raw Normal View History

2019-11-15 02:44:30 +00:00
[workspace]
2017-12-25 01:05:27 -05:00
2019-11-15 02:44:30 +00:00
members = [
"lightning",
"lightning-block-sync",
"lightning-invoice",
2019-11-15 02:44:30 +00:00
"lightning-net-tokio",
"lightning-persister",
"lightning-background-processor",
2019-11-15 02:44:30 +00:00
]
# Our tests do actual crypo and lots of work, the tradeoff for -O1 is well worth it.
# Ideally we would only do this in profile.test, but profile.test only applies to
# the test binary, not dependencies, which means most of the critical code still
# gets compiled as -O0. See
# https://doc.rust-lang.org/cargo/reference/profiles.html#profile-selection
[profile.dev]
opt-level = 1
panic = "abort"
[profile.release]
opt-level = 3
lto = true
panic = "abort"
[profile.bench]
opt-level = 3
codegen-units = 1
lto = true