5 "lightning-block-sync",
9 "lightning-background-processor",
10 "lightning-rapid-gossip-sync"
14 "lightning-custom-message",
15 "lightning-transaction-sync",
17 "msrv-no-dev-deps-check",
21 # Our tests do actual crypto and lots of work, the tradeoff for -O2 is well
22 # worth it. Note that we only apply optimizations to dependencies, not workspace
24 # https://doc.rust-lang.org/cargo/reference/profiles.html#profile-selection
25 [profile.dev.package."*"]
28 # It appears some minimal optimizations are required to inline many std methods
29 # and reduce the otherwise-substantial time spent in std self-checks. We do so
30 # here but ensure we keep LTO disabled as otherwise we're re-optimizing all our
31 # dependencies every time we make any local changes.