2020-09-16 17:46:11 -04:00
|
|
|
[package]
|
|
|
|
name = "lightning-persister"
|
2025-01-15 18:12:48 +00:00
|
|
|
version = "0.2.0+git"
|
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"
|
2023-08-21 13:13:56 +02:00
|
|
|
repository = "https://github.com/lightningdevkit/rust-lightning"
|
2020-09-16 17:46:11 -04:00
|
|
|
description = """
|
2023-08-21 13:13:56 +02:00
|
|
|
Utilities for LDK data persistence and retrieval.
|
2020-09-16 17:46:11 -04:00
|
|
|
"""
|
2023-10-24 15:16:38 +02:00
|
|
|
edition = "2021"
|
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"]
|
|
|
|
|
2020-09-16 17:46:11 -04:00
|
|
|
[dependencies]
|
2024-08-16 08:02:50 -07:00
|
|
|
bitcoin = "0.32.2"
|
2025-01-15 18:12:48 +00:00
|
|
|
lightning = { version = "0.2.0", path = "../lightning" }
|
2020-09-16 17:46:11 -04:00
|
|
|
|
2021-02-18 15:45:47 -05:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
2023-08-01 10:46:51 +02:00
|
|
|
windows-sys = { version = "0.48.0", default-features = false, features = ["Win32_Storage_FileSystem", "Win32_Foundation"] }
|
2021-02-18 15:45:47 -05:00
|
|
|
|
2023-05-11 06:03:57 +00:00
|
|
|
[target.'cfg(ldk_bench)'.dependencies]
|
|
|
|
criterion = { version = "0.4", optional = true, default-features = false }
|
|
|
|
|
2020-09-16 17:46:11 -04:00
|
|
|
[dev-dependencies]
|
2025-01-15 18:12:48 +00:00
|
|
|
lightning = { version = "0.2.0", path = "../lightning", features = ["_test_utils"] }
|
2024-08-16 08:02:50 -07:00
|
|
|
bitcoin = { version = "0.32.2", default-features = false }
|
2024-07-12 11:23:50 +02:00
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|