5da607c9fa018bae76340bedbc4bd9454d4302e9
[rust-lightning] / lightning-rapid-gossip-sync / Cargo.toml
1 [package]
2 name = "lightning-rapid-gossip-sync"
3 version = "0.0.121"
4 authors = ["Arik Sosman <git@arik.io>"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/rust-lightning"
7 edition = "2021"
8 description = """
9 Utility to process gossip routing data from Rapid Gossip Sync Server.
10 """
11
12 [features]
13 default = ["std"]
14 no-std = ["lightning/no-std"]
15 std = ["lightning/std"]
16
17 [dependencies]
18 lightning = { version = "0.0.121", path = "../lightning", default-features = false }
19 bitcoin = { version = "0.30.2", default-features = false }
20
21 [target.'cfg(ldk_bench)'.dependencies]
22 criterion = { version = "0.4", optional = true, default-features = false }
23
24 [dev-dependencies]
25 lightning = { version = "0.0.121", path = "../lightning", features = ["_test_utils"] }