2c4d3df081b977992b0c3da671d76d1481608ca7
[rust-lightning] / lightning-background-processor / Cargo.toml
1 [package]
2 name = "lightning-background-processor"
3 version = "0.0.111"
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 [dependencies]
17 bitcoin = "0.29.0"
18 lightning = { version = "0.0.111", path = "../lightning", features = ["std"] }
19 lightning-rapid-gossip-sync = { version = "0.0.111", path = "../lightning-rapid-gossip-sync" }
20 futures = { version = "0.3", optional = true }
21
22 [dev-dependencies]
23 lightning = { version = "0.0.111", path = "../lightning", features = ["_test_utils"] }
24 lightning-invoice = { version = "0.19.0", path = "../lightning-invoice" }
25 lightning-persister = { version = "0.0.111", path = "../lightning-persister" }