X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=7bf00404372f66a683ad888432e4c3e0190f0028;hb=c05347f48a4ff2789ae261ee8c8f3f4277489420;hp=0a9821f14cfc86768a57f48b1e31af2e80c07868;hpb=8799a2a0440603bb10b7cf121f60e41f0ef1a6fa;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 0a9821f1..7bf00404 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-persister" -version = "0.0.13" +version = "0.0.14" authors = ["Valentine Wallace", "Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/rust-bitcoin/rust-lightning/" @@ -8,17 +8,16 @@ 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" } +lightning = { version = "0.0.14", 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"] } +lightning = { version = "0.0.14", path = "../lightning", features = ["_test_utils"] }