Merge pull request #688 from TheBlueMatt/2020-09-dev-docs
[rust-lightning] / Cargo.toml
1 [workspace]
2
3 members = [
4     "lightning",
5     "lightning-net-tokio",
6 ]
7
8 # Our tests do actual crypo and lots of work, the tradeoff for -O1 is well worth it
9 [profile.test]
10 opt-level = 1
11
12 [profile.dev]
13 panic = "abort"
14
15 [profile.release]
16 opt-level = 3
17 lto = true
18 panic = "abort"