Update licenses and add missing fields in Cargo.toml files
[rust-lightning] / lightning-persister / Cargo.toml
1 [package]
2 name = "lightning-persister"
3 version = "0.0.13"
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 [dependencies]
12 bitcoin = "0.26"
13 lightning = { version = "0.0.13", path = "../lightning" }
14 libc = "0.2"
15
16 [target.'cfg(windows)'.dependencies]
17 winapi = { version = "0.3", features = ["winbase"] }
18
19 [dev-dependencies.bitcoin]
20 version = "0.26"
21 features = ["bitcoinconsensus"]
22
23 [dev-dependencies]
24 lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] }