X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=c4f3acd4e72f302816de89bf84e689e8d0650e80;hb=7eac8977467c06fb5746cb2ec0789ce1f37e02fa;hp=44bc952a7d9bb060129cca7bc424610847e43aae;hpb=82f5a1cbdacd341a54bbf98f2835c0f8f6d8787a;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 44bc952a..c4f3acd4 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,20 +1,28 @@ [package] name = "lightning-persister" -version = "0.0.1" +version = "0.0.113" authors = ["Valentine Wallace", "Matt Corallo"] -license = "Apache-2.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/lightningdevkit/rust-lightning/" description = """ -Utilities to manage channel data persistence and retrieval. +Utilities to manage Rust-Lightning channel data persistence and retrieval. """ +edition = "2018" + +[package.metadata.docs.rs] +all-features = true +rustdoc-args = ["--cfg", "docsrs"] + +[features] +_bench_unstable = ["lightning/_bench_unstable"] [dependencies] -bitcoin = "0.24" -lightning = { version = "0.0.11", path = "../lightning" } +bitcoin = "0.29.0" +lightning = { version = "0.0.113", path = "../lightning" } libc = "0.2" -[dev-dependencies.bitcoin] -version = "0.24" -features = ["bitcoinconsensus"] +[target.'cfg(windows)'.dependencies] +winapi = { version = "0.3", features = ["winbase"] } [dev-dependencies] -lightning = { version = "0.0.11", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.113", path = "../lightning", features = ["_test_utils"] }