X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=d97cd017b2b1856c30b3cb2ea6038c334851a314;hb=02bebee62e1a2becdc8ee71704c913e8bb367d02;hp=6b69e9afe28b1d6ab435ba1fcffa9e08a0cce926;hpb=47cb2939c8d618bfced370e5c9103eac4ee6ce9e;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 6b69e9af..d97cd017 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,23 +1,27 @@ [package] name = "lightning-persister" -version = "0.0.13" +version = "0.0.106" 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.26" -lightning = { version = "0.0.13", path = "../lightning" } +bitcoin = "0.27" +lightning = { version = "0.0.106", path = "../lightning" } libc = "0.2" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winbase"] } [dev-dependencies] -lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.106", path = "../lightning", features = ["_test_utils"] }