X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=168c2ed010778e62f9b6eab250648dfde3d81cf7;hb=4ae65e8f4f07fb5e35e57350cdc1bc7dbe5f7e4c;hp=9e072dce78f89a44046e6530580256e349392c0c;hpb=2bf39a663b0461c2b7ef50e423baddfec826f537;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 9e072dce..168c2ed0 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,23 +1,27 @@ [package] name = "lightning-persister" -version = "0.0.102" +version = "0.0.111" 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.102", path = "../lightning" } +bitcoin = "0.29.0" +lightning = { version = "0.0.111", path = "../lightning" } libc = "0.2" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winbase"] } [dev-dependencies] -lightning = { version = "0.0.102", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.111", path = "../lightning", features = ["_test_utils"] }