660afcdfe6d1718db595b0d29c950761d3e1a724
[rust-lightning] / lightning-persister / Cargo.toml
1 [package]
2 name = "lightning-persister"
3 version = "0.0.98"
4 authors = ["Valentine Wallace", "Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/rust-bitcoin/rust-lightning/"
7 description = """
8 Utilities to manage Rust-Lightning channel data persistence and retrieval.
9 """
10
11 [features]
12 unstable = ["lightning/unstable"]
13
14 [dependencies]
15 bitcoin = "0.26"
16 lightning = { version = "0.0.98", path = "../lightning" }
17 libc = "0.2"
18
19 [target.'cfg(windows)'.dependencies]
20 winapi = { version = "0.3", features = ["winbase"] }
21
22 [dev-dependencies]
23 lightning = { version = "0.0.98", path = "../lightning", features = ["_test_utils"] }