X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=c13dcb169d4e51ef8cceba3baabaef2b26584caf;hb=ca9357147e521a15702d1f05c687c54f9a65bf2b;hp=ef8631059c986fb3d11468e0098391318492a964;hpb=081ce7c843713a42803097a6d2dcf3631778beda;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index ef863105..c13dcb16 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,23 +1,27 @@ [package] name = "lightning-persister" -version = "0.0.103" +version = "0.0.109" 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.103", path = "../lightning" } +bitcoin = "0.28.1" +lightning = { version = "0.0.109", path = "../lightning" } libc = "0.2" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winbase"] } [dev-dependencies] -lightning = { version = "0.0.103", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.109", path = "../lightning", features = ["_test_utils"] }