Bump crate versions to 0.0.112/invoice 0.20
[rust-lightning] / lightning-rapid-gossip-sync / Cargo.toml
1 [package]
2 name = "lightning-rapid-gossip-sync"
3 version = "0.0.112"
4 authors = ["Arik Sosman <git@arik.io>"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/rust-lightning"
7 edition = "2018"
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 _bench_unstable = []
17
18 [dependencies]
19 lightning = { version = "0.0.112", path = "../lightning", default-features = false }
20 bitcoin = { version = "0.29.0", default-features = false }
21
22 [dev-dependencies]
23 lightning = { version = "0.0.112", path = "../lightning", features = ["_test_utils"] }