Initial commit.
[rapid-gossip-sync-server] / Cargo.toml
1 [package]
2 name = "rapid-gossip-sync-server"
3 version = "0.1.0"
4 edition = "2018"
5
6 [dependencies]
7 base64 = "0.13.0"
8 bech32 = "0.8"
9 bitcoin = "0.28.1"
10 bitcoin-bech32 = "0.12"
11 lightning = { version = "0.0.110" }
12 lightning-block-sync = { version = "0.0.110", features=["rest-client"] }
13 lightning-net-tokio = { version = "0.0.110" }
14 chrono = "0.4"
15 futures = "0.3"
16 hex = "0.3"
17 rand = "0.4"
18 tokio = { version = "1.14.1", features = ["full"] }
19 tokio-postgres = { version="0.7.5" }
20
21 [profile.release]
22 opt-level = 3
23 lto = true
24 panic = "abort"