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