Bump crate versions to 0.0.106/invoice 0.14
[rust-lightning] / lightning-persister / Cargo.toml
1 [package]
2 name = "lightning-persister"
3 version = "0.0.106"
4 authors = ["Valentine Wallace", "Matt Corallo"]
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/lightningdevkit/rust-lightning/"
7 description = """
8 Utilities to manage Rust-Lightning channel data persistence and retrieval.
9 """
10
11 [package.metadata.docs.rs]
12 all-features = true
13 rustdoc-args = ["--cfg", "docsrs"]
14
15 [features]
16 _bench_unstable = ["lightning/_bench_unstable"]
17
18 [dependencies]
19 bitcoin = "0.27"
20 lightning = { version = "0.0.106", path = "../lightning" }
21 libc = "0.2"
22
23 [target.'cfg(windows)'.dependencies]
24 winapi = { version = "0.3", features = ["winbase"] }
25
26 [dev-dependencies]
27 lightning = { version = "0.0.106", path = "../lightning", features = ["_test_utils"] }