2020-09-16 17:46:11 -04:00
|
|
|
[package]
|
|
|
|
name = "lightning-persister"
|
2023-04-21 23:36:43 +00:00
|
|
|
version = "0.0.115"
|
2020-09-16 17:46:11 -04:00
|
|
|
authors = ["Valentine Wallace", "Matt Corallo"]
|
2021-03-09 16:51:14 -05:00
|
|
|
license = "MIT OR Apache-2.0"
|
2021-12-26 22:53:16 -05:00
|
|
|
repository = "https://github.com/lightningdevkit/rust-lightning/"
|
2020-09-16 17:46:11 -04:00
|
|
|
description = """
|
2021-03-09 16:51:14 -05:00
|
|
|
Utilities to manage Rust-Lightning channel data persistence and retrieval.
|
2020-09-16 17:46:11 -04:00
|
|
|
"""
|
2022-10-13 02:35:48 -04:00
|
|
|
edition = "2018"
|
2020-09-16 17:46:11 -04:00
|
|
|
|
2022-02-11 22:22:20 -06:00
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
2021-03-31 20:16:21 -04:00
|
|
|
[features]
|
2022-02-10 21:13:19 +00:00
|
|
|
_bench_unstable = ["lightning/_bench_unstable"]
|
2021-03-31 20:16:21 -04:00
|
|
|
|
2020-09-16 17:46:11 -04:00
|
|
|
[dependencies]
|
2022-08-09 17:39:51 +02:00
|
|
|
bitcoin = "0.29.0"
|
2023-04-21 23:36:43 +00:00
|
|
|
lightning = { version = "0.0.115", path = "../lightning" }
|
2020-09-16 17:46:11 -04:00
|
|
|
libc = "0.2"
|
|
|
|
|
2021-02-18 15:45:47 -05:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
winapi = { version = "0.3", features = ["winbase"] }
|
|
|
|
|
2020-09-16 17:46:11 -04:00
|
|
|
[dev-dependencies]
|
2023-04-21 23:36:43 +00:00
|
|
|
lightning = { version = "0.0.115", path = "../lightning", features = ["_test_utils"] }
|