X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=ef8631059c986fb3d11468e0098391318492a964;hb=ccac926671d17f3ad2267844992d8272e74e6e0b;hp=9ce4e8f683fb20cb7e6daad7a49fb30ff7d1dd83;hpb=1bb9e64ebc6afaa21afcef4f71bb83054d9b2023;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 9ce4e8f6..01415f29 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,23 +1,28 @@ [package] name = "lightning-persister" -version = "0.0.99" +version = "0.0.114" 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. """ +edition = "2018" + +[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.99", path = "../lightning" } +bitcoin = "0.29.0" +lightning = { version = "0.0.114", path = "../lightning" } libc = "0.2" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winbase"] } [dev-dependencies] -lightning = { version = "0.0.99", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.114", path = "../lightning", features = ["_test_utils"] }