X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-background-processor%2FCargo.toml;h=f16b0015cff5cee17abcbf62d6a19f1ec2720348;hb=0d1072b7c3fb5366742473c38069c421cdd60b87;hp=89ac216816121a3be55040a47570b28b2b6a57e6;hpb=52f1d45bb20114bf89880e8128d0f570e426f0a6;p=rust-lightning diff --git a/lightning-background-processor/Cargo.toml b/lightning-background-processor/Cargo.toml index 89ac2168..f16b0015 100644 --- a/lightning-background-processor/Cargo.toml +++ b/lightning-background-processor/Cargo.toml @@ -1,22 +1,31 @@ [package] name = "lightning-background-processor" -version = "0.0.13" +version = "0.0.116-alpha1" authors = ["Valentine Wallace "] license = "MIT OR Apache-2.0" -repository = "http://github.com/rust-bitcoin/rust-lightning" +repository = "http://github.com/lightningdevkit/rust-lightning" description = """ Utilities to perform required background tasks for Rust Lightning. """ edition = "2018" +[package.metadata.docs.rs] +all-features = true +rustdoc-args = ["--cfg", "docsrs"] + +[features] +futures = [ ] +std = ["lightning/std", "lightning-rapid-gossip-sync/std"] + +default = ["std"] + [dependencies] -bitcoin = "0.26" -lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] } -lightning-persister = { version = "0.0.13", path = "../lightning-persister" } +bitcoin = { version = "0.29.0", default-features = false } +lightning = { version = "0.0.116-alpha1", path = "../lightning", default-features = false } +lightning-rapid-gossip-sync = { version = "0.0.116-alpha1", path = "../lightning-rapid-gossip-sync", default-features = false } [dev-dependencies] -lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] } - -[dev-dependencies.bitcoin] -version = "0.26" -features = ["bitcoinconsensus"] +tokio = { version = "1.14", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] } +lightning = { version = "0.0.116-alpha1", path = "../lightning", features = ["_test_utils"] } +lightning-invoice = { version = "0.24.0-alpha1", path = "../lightning-invoice" } +lightning-persister = { version = "0.0.116-alpha1", path = "../lightning-persister" }