rust-lightning/Cargo.toml
Matt Corallo dbf4f58987 Remove the bindings crate from the root namespace to let it break
Until we get the bindings generation process super stable, let the
bindings get stale with respect to the main repo while still letting
`cargo check` pass.
2020-09-13 20:58:50 -04:00

18 lines
276 B
TOML

[workspace]
members = [
"lightning",
"lightning-net-tokio",
]
# Our tests do actual crypo and lots of work, the tradeoff for -O1 is well worth it
[profile.test]
opt-level = 1
[profile.dev]
panic = "abort"
[profile.release]
opt-level = 3
lto = true
panic = "abort"