X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=168c2ed010778e62f9b6eab250648dfde3d81cf7;hb=feabd61bfe74be3fb8878d9c4ae2a186e60e61a4;hp=27f772cf326e84574bfd2cbfd70c6c9360d84ccf;hpb=036ea119541553bdd17db84a48eb18e0232b2333;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 27f772cf..168c2ed0 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning-persister" -version = "0.0.104" +version = "0.0.111" authors = ["Valentine Wallace", "Matt Corallo"] license = "MIT OR Apache-2.0" repository = "https://github.com/lightningdevkit/rust-lightning/" @@ -8,16 +8,20 @@ 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.104", 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.104", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.111", path = "../lightning", features = ["_test_utils"] }