X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-rapid-gossip-sync%2FCargo.toml;h=85f3eb5f32cb49e6e23bd462c8197a32a6bbfbfa;hb=a8fa5a1685d84d3b07732e4ecc04e2dc7ba06a00;hp=2fa598dc1a22c11be6c84e4938d7fba6be4b98d9;hpb=8886d1dc76ce7bd815634c738d114e7d3572c4fe;p=rust-lightning diff --git a/lightning-rapid-gossip-sync/Cargo.toml b/lightning-rapid-gossip-sync/Cargo.toml index 2fa598dc..85f3eb5f 100644 --- a/lightning-rapid-gossip-sync/Cargo.toml +++ b/lightning-rapid-gossip-sync/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-rapid-gossip-sync" -version = "0.0.111" +version = "0.0.117-alpha2" authors = ["Arik Sosman "] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" @@ -13,11 +13,13 @@ Utility to process gossip routing data from Rapid Gossip Sync Server. default = ["std"] no-std = ["lightning/no-std"] std = ["lightning/std"] -_bench_unstable = [] [dependencies] -lightning = { version = "0.0.111", path = "../lightning" } +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.111", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.117-alpha2", path = "../lightning", features = ["_test_utils"] }