rust-lightning/Cargo.toml
Valentine Wallace a368093803
Add BackgroundProcessor for ChannelManager persistence and other
Other includes calling timer_chan_freshness_every_minute() and in the
future, possibly persisting channel graph data.

This struct is suitable for things that need to happen periodically and
can happen in the background.
2021-02-19 15:00:43 -05:00

23 lines
611 B
TOML

[workspace]
members = [
"lightning",
"lightning-block-sync",
"lightning-net-tokio",
"lightning-persister",
"background-processor",
]
# 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"