Merge pull request #2591 from TheBlueMatt/2023-09-2562-followups
[rust-lightning] / lightning-rapid-gossip-sync / Cargo.toml
index 568e399fde43521d4cfdc520c0919c602716b2a9..85f3eb5f32cb49e6e23bd462c8197a32a6bbfbfa 100644 (file)
@@ -1,6 +1,6 @@
 [package]
 name = "lightning-rapid-gossip-sync"
-version = "0.0.109"
+version = "0.0.117-alpha2"
 authors = ["Arik Sosman <git@arik.io>"]
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/lightningdevkit/rust-lightning"
@@ -10,11 +10,16 @@ Utility to process gossip routing data from Rapid Gossip Sync Server.
 """
 
 [features]
-_bench_unstable = []
+default = ["std"]
+no-std = ["lightning/no-std"]
+std = ["lightning/std"]
 
 [dependencies]
-lightning = { version = "0.0.109", path = "../lightning" }
-bitcoin = { version = "0.28.1", default-features = false }
+lightning = { version = "0.0.117-alpha2", path = "../lightning", default-features = false }
+bitcoin = { version = "0.29.0", default-features = false }
+
+[target.'cfg(ldk_bench)'.dependencies]
+criterion = { version = "0.4", optional = true, default-features = false }
 
 [dev-dependencies]
-lightning = { version = "0.0.109", path = "../lightning", features = ["_test_utils"] }
+lightning = { version = "0.0.117-alpha2", path = "../lightning", features = ["_test_utils"] }