X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-rapid-gossip-sync%2FCargo.toml;h=02ff3da57b5cc68d95cdf62cdbbd2b433b3754de;hb=3cc673bec27703bbd7ed4a60421e10a85a01569c;hp=58446a46e7d8f02c64941296f00d8c6e1d4f1818;hpb=0b7700830b440613d66a4494213b8bbfa63b8f68;p=rust-lightning diff --git a/lightning-rapid-gossip-sync/Cargo.toml b/lightning-rapid-gossip-sync/Cargo.toml index 58446a46..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.106" +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.106", path = "../lightning" } -bitcoin = { version = "0.28.1", 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.106", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.123-beta", path = "../lightning", features = ["_test_utils"] }