Fix unused `Result` in tests
[rapid-gossip-sync-server] / Cargo.toml
1 [package]
2 name = "rapid-gossip-sync-server"
3 version = "0.1.0"
4 edition = "2021"
5
6 [dependencies]
7 bitcoin = "0.30"
8 hex-conservative = "0.2"
9 lightning = { version = "0.0.121" }
10 lightning-block-sync = { version = "0.0.121", features=["rest-client"] }
11 lightning-net-tokio = { version = "0.0.121" }
12 tokio = { version = "1.25", features = ["full"] }
13 tokio-postgres = { version = "=0.7.5" }
14 futures = "0.3"
15
16 [dev-dependencies]
17 lightning = { version = "0.0.121", features = ["_test_utils"] }
18 lightning-rapid-gossip-sync = { version = "0.0.121" }
19
20 [profile.dev]
21 panic = "abort"
22
23 [profile.release]
24 opt-level = 3
25 lto = true
26 panic = "abort"