X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=lightning-persister%2FCargo.toml;h=ef8631059c986fb3d11468e0098391318492a964;hb=31975c5994c8daca5b69c7c3b7d5466409ae8c2d;hp=63b69a1e166667118ffd2933797963232554e22b;hpb=773c2d1dc3805b4724c72887cf6436ccf088c6a5;p=rust-lightning diff --git a/lightning-persister/Cargo.toml b/lightning-persister/Cargo.toml index 63b69a1e..ef863105 100644 --- a/lightning-persister/Cargo.toml +++ b/lightning-persister/Cargo.toml @@ -1,20 +1,23 @@ [package] name = "lightning-persister" -version = "0.0.1" +version = "0.0.103" authors = ["Valentine Wallace", "Matt Corallo"] -license = "Apache-2.0" +license = "MIT OR Apache-2.0" +repository = "https://github.com/rust-bitcoin/rust-lightning/" description = """ -Utilities to manage channel data persistence and retrieval. +Utilities to manage Rust-Lightning channel data persistence and retrieval. """ +[features] +unstable = ["lightning/unstable"] + [dependencies] -bitcoin = "0.24" -lightning = { version = "0.0.12", path = "../lightning" } +bitcoin = "0.27" +lightning = { version = "0.0.103", 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.12", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.103", path = "../lightning", features = ["_test_utils"] }