2021-01-12 00:03:32 +01:00
|
|
|
[package]
|
2021-03-09 00:48:24 +01:00
|
|
|
name = "lightning-background-processor"
|
2022-06-10 12:41:51 +02:00
|
|
|
version = "0.0.108"
|
2021-01-12 00:03:32 +01:00
|
|
|
authors = ["Valentine Wallace <vwallace@protonmail.com>"]
|
2021-03-09 22:51:14 +01:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-27 04:53:16 +01:00
|
|
|
repository = "http://github.com/lightningdevkit/rust-lightning"
|
2021-03-09 22:51:14 +01:00
|
|
|
description = """
|
|
|
|
Utilities to perform required background tasks for Rust Lightning.
|
|
|
|
"""
|
2021-01-12 00:03:32 +01:00
|
|
|
edition = "2018"
|
|
|
|
|
2022-02-12 05:22:20 +01:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2021-01-12 00:03:32 +01:00
|
|
|
[dependencies]
|
2022-05-05 17:59:38 +02:00
|
|
|
bitcoin = "0.28.1"
|
2022-06-10 12:41:51 +02:00
|
|
|
lightning = { version = "0.0.108", path = "../lightning", features = ["std"] }
|
|
|
|
lightning-rapid-gossip-sync = { version = "0.0.108", path = "../lightning-rapid-gossip-sync" }
|
2021-01-12 00:03:32 +01:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-06-10 12:41:51 +02:00
|
|
|
lightning = { version = "0.0.108", path = "../lightning", features = ["_test_utils"] }
|
|
|
|
lightning-invoice = { version = "0.16.0", path = "../lightning-invoice" }
|
|
|
|
lightning-persister = { version = "0.0.108", path = "../lightning-persister" }
|