X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-background-processor%2FCargo.toml;h=96ac33a917e344a7027fa270babebec1774d8639;hb=8ecd7c30c903b9e2db0c280110200f7c61565c11;hp=4e45bb2a83c11d58b6528c59cfef3208d07e86ac;hpb=2bf39a663b0461c2b7ef50e423baddfec826f537;p=rust-lightning diff --git a/lightning-background-processor/Cargo.toml b/lightning-background-processor/Cargo.toml index 4e45bb2a..96ac33a9 100644 --- a/lightning-background-processor/Cargo.toml +++ b/lightning-background-processor/Cargo.toml @@ -1,19 +1,31 @@ [package] name = "lightning-background-processor" -version = "0.0.102" +version = "0.0.113" 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 = [ "futures-util" ] +std = ["lightning/std", "lightning-rapid-gossip-sync/std"] + +default = ["std"] + [dependencies] -bitcoin = "0.27" -lightning = { version = "0.0.102", path = "../lightning", features = ["allow_wallclock_use"] } -lightning-persister = { version = "0.0.102", path = "../lightning-persister" } +bitcoin = { version = "0.29.0", default-features = false } +lightning = { version = "0.0.113", path = "../lightning", default-features = false } +lightning-rapid-gossip-sync = { version = "0.0.113", path = "../lightning-rapid-gossip-sync", default-features = false } +futures-util = { version = "0.3", default-features = false, features = ["async-await-macro"], optional = true } [dev-dependencies] -lightning = { version = "0.0.102", path = "../lightning", features = ["_test_utils"] } - +lightning = { version = "0.0.113", path = "../lightning", features = ["_test_utils"] } +lightning-invoice = { version = "0.21.0", path = "../lightning-invoice" } +lightning-persister = { version = "0.0.113", path = "../lightning-persister" }