Merge pull request #4 from TheBlueMatt/2022-08-fix-executors
[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 hex = "0.3"
16 rand = "0.4"
17 tokio = { version = "1.14.1", features = ["full"] }
18 tokio-postgres = { version="0.7.5" }
19
20 [profile.release]
21 opt-level = 3
22 lto = true
23 panic = "abort"