1872a1d0714ca73127521e89e073b4fbb0c612f0
[rust-lightning] / lightning-background-processor / Cargo.toml
1 [package]
2 name = "lightning-background-processor"
3 version = "0.0.121"
4 authors = ["Valentine Wallace <vwallace@protonmail.com>"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/rust-lightning"
7 description = """
8 Utilities to perform required background tasks for Rust Lightning.
9 """
10 edition = "2021"
11
12 [package.metadata.docs.rs]
13 all-features = true
14 rustdoc-args = ["--cfg", "docsrs"]
15
16 [features]
17 futures = [ ]
18 std = ["bitcoin/std", "lightning/std", "lightning-rapid-gossip-sync/std"]
19 no-std = ["bitcoin/no-std", "lightning/no-std", "lightning-rapid-gossip-sync/no-std"]
20
21 default = ["std"]
22
23 [dependencies]
24 bitcoin = { version = "0.30.2", default-features = false }
25 lightning = { version = "0.0.121", path = "../lightning", default-features = false }
26 lightning-rapid-gossip-sync = { version = "0.0.121", path = "../lightning-rapid-gossip-sync", default-features = false }
27
28 [dev-dependencies]
29 tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
30 lightning = { version = "0.0.121", path = "../lightning", features = ["_test_utils"] }
31 lightning-invoice = { version = "0.29.0", path = "../lightning-invoice" }
32 lightning-persister = { version = "0.0.121", path = "../lightning-persister" }