96ac33a917e344a7027fa270babebec1774d8639
[rust-lightning] / lightning-background-processor / Cargo.toml
1 [package]
2 name = "lightning-background-processor"
3 version = "0.0.113"
4 authors = ["Valentine Wallace <vwallace@protonmail.com>"]
5 license = "MIT OR Apache-2.0"
6 repository = "http://github.com/lightningdevkit/rust-lightning"
7 description = """
8 Utilities to perform required background tasks for Rust Lightning.
9 """
10 edition = "2018"
11
12 [package.metadata.docs.rs]
13 all-features = true
14 rustdoc-args = ["--cfg", "docsrs"]
15
16 [features]
17 futures = [ "futures-util" ]
18 std = ["lightning/std", "lightning-rapid-gossip-sync/std"]
19
20 default = ["std"]
21
22 [dependencies]
23 bitcoin = { version = "0.29.0", default-features = false }
24 lightning = { version = "0.0.113", path = "../lightning", default-features = false }
25 lightning-rapid-gossip-sync = { version = "0.0.113", path = "../lightning-rapid-gossip-sync", default-features = false }
26 futures-util = { version = "0.3", default-features = false, features = ["async-await-macro"], optional = true }
27
28 [dev-dependencies]
29 lightning = { version = "0.0.113", path = "../lightning", features = ["_test_utils"] }
30 lightning-invoice = { version = "0.21.0", path = "../lightning-invoice" }
31 lightning-persister = { version = "0.0.113", path = "../lightning-persister" }