X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=361ab0c57a1d13fd9ee39543534c0bcbbbac4ccf;hb=4835b1697c38110050004fb493517e26eaaf4685;hp=6b3518398bb022fc0690a9aa595c6ccf907a02b0;hpb=790d26f63f1ed6fff8742bd0df58bf010a11b567;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 6b351839..361ab0c5 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "lightning-persister" -version = "0.0.112" +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.112", path = "../lightning" } -libc = "0.2" +lightning = { version = "0.0.116", path = "../lightning" } [target.'cfg(windows)'.dependencies] -winapi = { version = "0.3", features = ["winbase"] } +windows-sys = { version = "0.48.0", default-features = false, features = ["Win32_Storage_FileSystem", "Win32_Foundation"] } + +[target.'cfg(ldk_bench)'.dependencies] +criterion = { version = "0.4", optional = true, default-features = false } [dev-dependencies] -lightning = { version = "0.0.112", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.116", path = "../lightning", features = ["_test_utils"] } +bitcoin = { version = "0.29.0", default-features = false }