mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-24 23:08:36 +01:00
27 lines
720 B
TOML
27 lines
720 B
TOML
[package]
|
|
name = "lightning-persister"
|
|
version = "0.0.13"
|
|
authors = ["Valentine Wallace", "Matt Corallo"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/rust-bitcoin/rust-lightning/"
|
|
description = """
|
|
Utilities to manage Rust-Lightning channel data persistence and retrieval.
|
|
"""
|
|
|
|
[features]
|
|
unstable = ["lightning/unstable"]
|
|
|
|
[dependencies]
|
|
bitcoin = "0.26"
|
|
lightning = { version = "0.0.13", path = "../lightning" }
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["winbase"] }
|
|
|
|
[dev-dependencies.bitcoin]
|
|
version = "0.26"
|
|
features = ["bitcoinconsensus"]
|
|
|
|
[dev-dependencies]
|
|
lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }
|