X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-background-processor%2FCargo.toml;h=904c821fdb17929be252b95831bda1eefc7987e0;hb=348db3baf7687081c43276566982c6fbc0019651;hp=6a4925a0be007b6609d4e2ef2f0f10ac3066932c;hpb=48fa2fd17295bcada25a3ee3f2c6f88d273484ac;p=rust-lightning diff --git a/lightning-background-processor/Cargo.toml b/lightning-background-processor/Cargo.toml index 6a4925a0..904c821f 100644 --- a/lightning-background-processor/Cargo.toml +++ b/lightning-background-processor/Cargo.toml @@ -1,31 +1,32 @@ [package] name = "lightning-background-processor" -version = "0.0.114" +version = "0.0.118" authors = ["Valentine Wallace "] license = "MIT OR Apache-2.0" -repository = "http://github.com/lightningdevkit/rust-lightning" +repository = "https://github.com/lightningdevkit/rust-lightning" description = """ Utilities to perform required background tasks for Rust Lightning. """ -edition = "2018" +edition = "2021" [package.metadata.docs.rs] all-features = true rustdoc-args = ["--cfg", "docsrs"] [features] -futures = [ "futures-util" ] -std = ["lightning/std", "lightning-rapid-gossip-sync/std"] +futures = [ ] +std = ["bitcoin/std", "lightning/std", "lightning-rapid-gossip-sync/std"] +no-std = ["bitcoin/no-std", "lightning/no-std", "lightning-rapid-gossip-sync/no-std"] default = ["std"] [dependencies] -bitcoin = { version = "0.29.0", default-features = false } -lightning = { version = "0.0.114", path = "../lightning", default-features = false } -lightning-rapid-gossip-sync = { version = "0.0.114", path = "../lightning-rapid-gossip-sync", default-features = false } -futures-util = { version = "0.3", default-features = false, features = ["async-await-macro"], optional = true } +bitcoin = { version = "0.30.2", default-features = false } +lightning = { version = "0.0.118", path = "../lightning", default-features = false } +lightning-rapid-gossip-sync = { version = "0.0.118", path = "../lightning-rapid-gossip-sync", default-features = false } [dev-dependencies] -lightning = { version = "0.0.114", path = "../lightning", features = ["_test_utils"] } -lightning-invoice = { version = "0.22.0", path = "../lightning-invoice" } -lightning-persister = { version = "0.0.114", path = "../lightning-persister" } +tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] } +lightning = { version = "0.0.118", path = "../lightning", features = ["_test_utils"] } +lightning-invoice = { version = "0.26.0", path = "../lightning-invoice" } +lightning-persister = { version = "0.0.118", path = "../lightning-persister" }