2021-01-11 18:03:32 -05:00
|
|
|
[package]
|
2021-03-08 18:48:24 -05:00
|
|
|
name = "lightning-background-processor"
|
2025-01-15 18:12:48 +00:00
|
|
|
version = "0.2.0+git"
|
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"
|
2023-07-23 08:58:41 +03:00
|
|
|
repository = "https://github.com/lightningdevkit/rust-lightning"
|
2021-03-09 16:51:14 -05:00
|
|
|
description = """
|
|
|
|
Utilities to perform required background tasks for Rust Lightning.
|
|
|
|
"""
|
2023-10-24 15:16:38 +02:00
|
|
|
edition = "2021"
|
2021-01-11 18:03:32 -05:00
|
|
|
|
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]
|
2023-03-30 22:11:22 +00:00
|
|
|
futures = [ ]
|
2024-09-04 10:53:37 +02:00
|
|
|
std = ["lightning/std", "bitcoin-io/std", "bitcoin_hashes/std"]
|
2023-01-17 00:16:48 +00:00
|
|
|
|
|
|
|
default = ["std"]
|
2022-10-10 14:47:18 -04:00
|
|
|
|
2021-01-11 18:03:32 -05:00
|
|
|
[dependencies]
|
2024-08-16 08:02:50 -07:00
|
|
|
bitcoin = { version = "0.32.2", default-features = false }
|
2024-09-04 10:53:37 +02:00
|
|
|
bitcoin_hashes = { version = "0.14.0", default-features = false }
|
|
|
|
bitcoin-io = { version = "0.1.2", default-features = false }
|
2025-01-15 18:12:48 +00:00
|
|
|
lightning = { version = "0.2.0", path = "../lightning", default-features = false }
|
|
|
|
lightning-rapid-gossip-sync = { version = "0.2.0", path = "../lightning-rapid-gossip-sync", default-features = false }
|
2021-01-11 18:03:32 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2023-12-13 10:37:58 -08:00
|
|
|
tokio = { version = "1.35", features = [ "macros", "rt", "rt-multi-thread", "sync", "time" ] }
|
2025-01-15 18:12:48 +00:00
|
|
|
lightning = { version = "0.2.0", path = "../lightning", features = ["_test_utils"] }
|
|
|
|
lightning-invoice = { version = "0.34.0", path = "../lightning-invoice" }
|
|
|
|
lightning-persister = { version = "0.2.0", path = "../lightning-persister" }
|
2024-07-12 11:23:50 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|