X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-rapid-gossip-sync%2FCargo.toml;h=7853c32e70caedd6f059eae4a9295e594f43ae3c;hb=f24830719af671f2998a42c3ce248147e94fe0d2;hp=7767094479c72d9c1be74ae0a43d6df72667f707;hpb=a922830ebbea1207d178b455237abe5474598026;p=rust-lightning diff --git a/lightning-rapid-gossip-sync/Cargo.toml b/lightning-rapid-gossip-sync/Cargo.toml index 77670944..7853c32e 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.118" authors = ["Arik Sosman "] 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.111", path = "../lightning" } +lightning = { version = "0.0.118", 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.118", path = "../lightning", features = ["_test_utils"] }