Merge pull request #2101 from TheBlueMatt/2023-03-one-less-sig
[rust-lightning] / lightning-background-processor / Cargo.toml
1 [package]
2 name = "lightning-background-processor"
3 version = "0.0.114"
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 = [ ]
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.114", path = "../lightning", default-features = false }
25 lightning-rapid-gossip-sync = { version = "0.0.114", path = "../lightning-rapid-gossip-sync", default-features = false }
26
27 [dev-dependencies]
28 tokio = { version = "1.14", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
29 lightning = { version = "0.0.114", path = "../lightning", features = ["_test_utils"] }
30 lightning-invoice = { version = "0.22.0", path = "../lightning-invoice" }
31 lightning-persister = { version = "0.0.114", path = "../lightning-persister" }