2021-01-11 18:03:32 -05:00
|
|
|
[package]
|
2021-03-08 18:48:24 -05:00
|
|
|
name = "lightning-background-processor"
|
2022-12-15 17:30:11 +00:00
|
|
|
version = "0.0.113"
|
2021-01-11 18:03:32 -05:00
|
|
|
authors = ["Valentine Wallace <vwallace@protonmail.com>"]
|
2021-03-09 16:51:14 -05:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-26 22:53:16 -05:00
|
|
|
repository = "http://github.com/lightningdevkit/rust-lightning"
|
2021-03-09 16:51:14 -05:00
|
|
|
description = """
|
|
|
|
Utilities to perform required background tasks for Rust Lightning.
|
|
|
|
"""
|
2021-01-11 18:03:32 -05:00
|
|
|
edition = "2018"
|
|
|
|
|
2022-02-11 22:22:20 -06:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2022-10-10 14:47:18 -04:00
|
|
|
[features]
|
|
|
|
futures = [ "futures-util" ]
|
2023-01-17 00:16:48 +00:00
|
|
|
std = ["lightning/std", "lightning-rapid-gossip-sync/std"]
|
|
|
|
|
|
|
|
default = ["std"]
|
2022-10-10 14:47:18 -04:00
|
|
|
|
2021-01-11 18:03:32 -05:00
|
|
|
[dependencies]
|
2023-01-17 00:16:48 +00:00
|
|
|
bitcoin = { version = "0.29.0", default-features = false }
|
|
|
|
lightning = { version = "0.0.113", path = "../lightning", default-features = false }
|
|
|
|
lightning-rapid-gossip-sync = { version = "0.0.113", path = "../lightning-rapid-gossip-sync", default-features = false }
|
2022-10-10 14:47:18 -04:00
|
|
|
futures-util = { version = "0.3", default-features = false, features = ["async-await-macro"], optional = true }
|
2021-01-11 18:03:32 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-12-15 17:30:11 +00:00
|
|
|
lightning = { version = "0.0.113", path = "../lightning", features = ["_test_utils"] }
|
|
|
|
lightning-invoice = { version = "0.21.0", path = "../lightning-invoice" }
|
|
|
|
lightning-persister = { version = "0.0.113", path = "../lightning-persister" }
|