X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-rapid-gossip-sync%2FCargo.toml;h=5da607c9fa018bae76340bedbc4bd9454d4302e9;hb=fe50a507ab2840216584a197f63d412b2fb34834;hp=7767094479c72d9c1be74ae0a43d6df72667f707;hpb=d2a9ae0b8eb5bdb1724be0b8d398d0fdf9870266;p=rust-lightning diff --git a/lightning-rapid-gossip-sync/Cargo.toml b/lightning-rapid-gossip-sync/Cargo.toml index 77670944..5da607c9 100644 --- a/lightning-rapid-gossip-sync/Cargo.toml +++ b/lightning-rapid-gossip-sync/Cargo.toml @@ -1,20 +1,25 @@ [package] name = "lightning-rapid-gossip-sync" -version = "0.0.111" +version = "0.0.121" authors = ["Arik Sosman "] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning" -edition = "2018" +edition = "2021" description = """ 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" } -bitcoin = { version = "0.29.0", default-features = false } +lightning = { version = "0.0.121", path = "../lightning", default-features = false } +bitcoin = { version = "0.30.2", 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.121", path = "../lightning", features = ["_test_utils"] }