X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=0e786eb48ce04c719e1de413c0e2f95b6cdacc0c;hb=34205af801f321140b90e42d15486415e9cecd0f;hp=9e072dce78f89a44046e6530580256e349392c0c;hpb=083828ae5f20562823b9c07390ee0f1de4c0e9a6;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 9e072dce7..0e786eb48 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.105" 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" } +lightning = { version = "0.0.105", 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.105", path = "../lightning", features = ["_test_utils"] }