X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-background-processor%2FCargo.toml;h=343408ea99cdee000e65ed6b7d37d9ea3fa9abe8;hb=de783e0b958fadb9ca810248af782642d2cf3b78;hp=edb1551edee75428c9a3c4c35a3a3377d5cccdce;hpb=def0628332ae279df36d670534797259b758dda2;p=rust-lightning diff --git a/lightning-background-processor/Cargo.toml b/lightning-background-processor/Cargo.toml index edb1551e..343408ea 100644 --- a/lightning-background-processor/Cargo.toml +++ b/lightning-background-processor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-background-processor" -version = "0.0.105" +version = "0.0.113" authors = ["Valentine Wallace "] license = "MIT OR Apache-2.0" repository = "http://github.com/lightningdevkit/rust-lightning" @@ -13,11 +13,16 @@ edition = "2018" all-features = true rustdoc-args = ["--cfg", "docsrs"] +[features] +futures = [ "futures-util" ] + [dependencies] -bitcoin = "0.27" -lightning = { version = "0.0.105", path = "../lightning", features = ["std"] } -lightning-persister = { version = "0.0.105", path = "../lightning-persister" } +bitcoin = "0.29.0" +lightning = { version = "0.0.113", path = "../lightning", features = ["std"] } +lightning-rapid-gossip-sync = { version = "0.0.113", path = "../lightning-rapid-gossip-sync" } +futures-util = { version = "0.3", default-features = false, features = ["async-await-macro"], optional = true } [dev-dependencies] -lightning = { version = "0.0.105", path = "../lightning", features = ["_test_utils"] } -lightning-invoice = { version = "0.13.0", path = "../lightning-invoice" } +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" }