X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=a6775a18cff3ccf80fb5e7bfc1f840d527dd2c2b;hb=c84031b4c736f1f65525f6fd57bffa85f5c58e45;hp=88132bdcfd660ed70e367ed63c420a08244e408c;hpb=c1825672ed27839e95bb42bf8e75c9068da585d8;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 88132bdc..a6775a18 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "lightning-persister" -version = "0.0.115" +version = "0.0.116" authors = ["Valentine Wallace", "Matt Corallo"] license = "MIT OR Apache-2.0" -repository = "https://github.com/lightningdevkit/rust-lightning/" +repository = "https://github.com/lightningdevkit/rust-lightning" description = """ -Utilities to manage Rust-Lightning channel data persistence and retrieval. +Utilities for LDK data persistence and retrieval. """ edition = "2018" @@ -13,16 +13,16 @@ edition = "2018" all-features = true rustdoc-args = ["--cfg", "docsrs"] -[features] -_bench_unstable = ["lightning/_bench_unstable"] - [dependencies] bitcoin = "0.29.0" -lightning = { version = "0.0.115", path = "../lightning" } +lightning = { version = "0.0.116", 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.115", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.116", path = "../lightning", features = ["_test_utils"] }