X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=728743c8a4da2b35629c17ef93ebf33b156cd4df;hb=88ec5da4b33985396e0e748f91d046151b4ea161;hp=81c69d0ff9731330e9098cc3103e5f2b64345d48;hpb=09e167019589dcfc5ee9675ad243b337659eafc7;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 81c69d0f..728743c8 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,23 +1,27 @@ [package] name = "lightning-persister" -version = "0.0.99" +version = "0.0.110" authors = ["Valentine Wallace", "Matt Corallo"] license = "MIT OR Apache-2.0" -repository = "https://github.com/rust-bitcoin/rust-lightning/" +repository = "https://github.com/lightningdevkit/rust-lightning/" description = """ Utilities to manage Rust-Lightning channel data persistence and retrieval. """ +[package.metadata.docs.rs] +all-features = true +rustdoc-args = ["--cfg", "docsrs"] + [features] -unstable = ["lightning/unstable"] +_bench_unstable = ["lightning/_bench_unstable"] [dependencies] -bitcoin = "0.27" -lightning = { version = "0.0.99", path = "../lightning" } +bitcoin = "0.29.0" +lightning = { version = "0.0.110", path = "../lightning" } libc = "0.2" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winbase"] } [dev-dependencies] -lightning = { version = "0.0.99", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.110", path = "../lightning", features = ["_test_utils"] }