X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=9e072dce78f89a44046e6530580256e349392c0c;hb=9f37d1898f796e9929c6c5e9f33276a4f6189672;hp=44bc952a7d9bb060129cca7bc424610847e43aae;hpb=23a1d7aab5c2cc6f00636815fa126716456dfcfd;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 44bc952a..9e072dce 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,20 +1,23 @@ [package] name = "lightning-persister" -version = "0.0.1" +version = "0.0.102" authors = ["Valentine Wallace", "Matt Corallo"] -license = "Apache-2.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-bitcoin/rust-lightning/" description = """ -Utilities to manage channel data persistence and retrieval. +Utilities to manage Rust-Lightning channel data persistence and retrieval. """ +[features] +unstable = ["lightning/unstable"] + [dependencies] -bitcoin = "0.24" -lightning = { version = "0.0.11", path = "../lightning" } +bitcoin = "0.27" +lightning = { version = "0.0.102", path = "../lightning" } libc = "0.2" -[dev-dependencies.bitcoin] -version = "0.24" -features = ["bitcoinconsensus"] +[target.'cfg(windows)'.dependencies] +winapi = { version = "0.3", features = ["winbase"] } [dev-dependencies] -lightning = { version = "0.0.11", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.102", path = "../lightning", features = ["_test_utils"] }