X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=background-processor%2FCargo.toml;h=89ac216816121a3be55040a47570b28b2b6a57e6;hb=ed54379ee4bfdfd461d201f3020023cdd082d72e;hp=1a4dc488436bbf3d3450d50087cff6bf7f6468b7;hpb=a51d5cef583f814873b4b92d558cf1e25b4e30f4;p=rust-lightning diff --git a/background-processor/Cargo.toml b/background-processor/Cargo.toml index 1a4dc488..89ac2168 100644 --- a/background-processor/Cargo.toml +++ b/background-processor/Cargo.toml @@ -1,15 +1,22 @@ [package] -name = "background-processor" -version = "0.1.0" +name = "lightning-background-processor" +version = "0.0.13" authors = ["Valentine Wallace "] +license = "MIT OR Apache-2.0" +repository = "http://github.com/rust-bitcoin/rust-lightning" +description = """ +Utilities to perform required background tasks for Rust Lightning. +""" edition = "2018" -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html - [dependencies] bitcoin = "0.26" -lightning = { version = "0.0.12", path = "../lightning", features = ["allow_wallclock_use"] } -lightning-persister = { version = "0.0.1", path = "../lightning-persister" } +lightning = { version = "0.0.13", path = "../lightning", features = ["allow_wallclock_use"] } +lightning-persister = { version = "0.0.13", path = "../lightning-persister" } [dev-dependencies] -lightning = { version = "0.0.12", path = "../lightning", features = ["_test_utils"] } +lightning = { version = "0.0.13", path = "../lightning", features = ["_test_utils"] } + +[dev-dependencies.bitcoin] +version = "0.26" +features = ["bitcoinconsensus"]