X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=9ef734285871911197140323d9b4d6aff3add652;hb=d327c231cf7f998a8f588898841a385ac5cee58e;hp=ef8631059c986fb3d11468e0098391318492a964;hpb=e3bdfa0585b9900cd732d568169a3778005be523;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index ef863105..9ef73428 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,23 +1,28 @@ [package] name = "lightning-persister" -version = "0.0.103" +version = "0.0.116-alpha1" 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" -[features] -unstable = ["lightning/unstable"] +[package.metadata.docs.rs] +all-features = true +rustdoc-args = ["--cfg", "docsrs"] [dependencies] -bitcoin = "0.27" -lightning = { version = "0.0.103", path = "../lightning" } +bitcoin = "0.29.0" +lightning = { version = "0.0.116-alpha1", path = "../lightning" } libc = "0.2" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winbase"] } +[target.'cfg(ldk_bench)'.dependencies] +criterion = { version = "0.4", optional = true, default-features = false } + [dev-dependencies] -lightning = { version = "0.0.103", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.116-alpha1", path = "../lightning", features = ["_test_utils"] }