forked from lightningdevkit/rapid-gossip-sync-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 787 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "rapid-gossip-sync-server"
version = "0.1.0"
edition = "2021"
[dependencies]
bitcoin = "0.29"
lightning = { version = "0.0.117" }
lightning-block-sync = { version = "0.0.117", features=["rest-client"] }
lightning-net-tokio = { version = "0.0.117" }
tokio = { version = "1.25", features = ["full"] }
tokio-postgres = { version="=0.7.5" }
postgres-native-tls = "0.5.0"
native-tls = "0.2.11"
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
anyhow = "1.0"
ureq = { version = "2.5.0", features = ["json"] }
[dev-dependencies]
lightning = { version = "0.0.117", features = ["_test_utils"] }
lightning-rapid-gossip-sync = { version = "0.0.117" }
[profile.dev]
panic = "abort"
[profile.release]
opt-level = 3
lto = true
panic = "abort"