X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=lightning-persister%2FCargo.toml;h=79ffeeeb281ad1e28ef190212c5185b56225f4a3;hb=refs%2Fheads%2F2022-02-fix-tokio-msrv;hp=0a9821f14cfc86768a57f48b1e31af2e80c07868;hpb=52edab7055e998ec334855c9979403e0d8eb9406;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 0a9821f1..79ffeeeb 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,24 +1,23 @@ [package] name = "lightning-persister" -version = "0.0.13" +version = "0.0.104" 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. """ +[features] +_bench_unstable = ["lightning/_bench_unstable"] + [dependencies] -bitcoin = "0.26" -lightning = { version = "0.0.13", path = "../lightning" } +bitcoin = "0.27" +lightning = { version = "0.0.104", path = "../lightning" } libc = "0.2" [target.'cfg(windows)'.dependencies] winapi = { version = "0.3", features = ["winbase"] } -[dev-dependencies.bitcoin] -version = "0.26" -features = ["bitcoinconsensus"] - [dev-dependencies] -lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.104", path = "../lightning", features = ["_test_utils"] }