mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 07:17:40 +01:00
Other includes calling timer_chan_freshness_every_minute() and in the future, possibly persisting channel graph data. This struct is suitable for things that need to happen periodically and can happen in the background.
15 lines
541 B
TOML
15 lines
541 B
TOML
[package]
|
|
name = "background-processor"
|
|
version = "0.1.0"
|
|
authors = ["Valentine Wallace <vwallace@protonmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bitcoin = "0.24"
|
|
lightning = { version = "0.0.12", path = "../lightning", features = ["allow_wallclock_use"] }
|
|
lightning-persister = { version = "0.0.1", path = "../lightning-persister" }
|
|
|
|
[dev-dependencies]
|
|
lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] }
|