X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-rapid-gossip-sync%2FCargo.toml;h=02ff3da57b5cc68d95cdf62cdbbd2b433b3754de;hb=6ee8d81a58862e94efac1778359e37be567598a5;hp=b8bc8437bca04f2c96e08a12f5464635195c6993;hpb=ca4e31d75139f5ef50077a19c05d814ec57c3d4b;p=rust-lightning diff --git a/lightning-rapid-gossip-sync/Cargo.toml b/lightning-rapid-gossip-sync/Cargo.toml index b8bc8437..02ff3da5 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.110" +version = "0.0.123-beta" 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.110", path = "../lightning" } -bitcoin = { version = "0.29.0", default-features = false } +lightning = { version = "0.0.123-beta", 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.110", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.123-beta", path = "../lightning", features = ["_test_utils"] }