mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 07:17:40 +01:00
Defines an interface and related types for fetching block headers and data from a block source (e.g., Bitcoin Core). Used to keep lightning in sync with chain activity.
22 lines
583 B
TOML
22 lines
583 B
TOML
[workspace]
|
|
|
|
members = [
|
|
"lightning",
|
|
"lightning-block-sync",
|
|
"lightning-net-tokio",
|
|
"lightning-persister",
|
|
]
|
|
|
|
# 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"
|