2021-01-11 18:03:32 -05:00
|
|
|
[package]
|
2021-03-08 18:48:24 -05:00
|
|
|
name = "lightning-background-processor"
|
2021-03-08 18:50:35 -05:00
|
|
|
version = "0.0.13"
|
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"
|
|
|
|
repository = "http://github.com/rust-bitcoin/rust-lightning"
|
|
|
|
description = """
|
|
|
|
Utilities to perform required background tasks for Rust Lightning.
|
|
|
|
"""
|
2021-01-11 18:03:32 -05:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-01-14 20:57:56 -05:00
|
|
|
bitcoin = "0.26"
|
2021-03-08 18:50:35 -05:00
|
|
|
lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] }
|
|
|
|
lightning-persister = { version = "0.0.13", path = "../lightning-persister" }
|
2021-01-11 18:03:32 -05:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-08 18:50:35 -05:00
|
|
|
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
|
2021-03-09 16:47:43 -05:00
|
|
|
|