X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=Cargo.toml;h=a14984a00b90f64ff4d5b2bfe58fdd6f085627ef;hb=09c7f2f641d2496c2a6280b032f62b6249298a0f;hp=9ecd10fb2bede052abc6d0ddf2f2683e1c6b543f;hpb=2258d2b6d37662b8a7055d02da4d7e848e6ea40f;p=rust-lightning diff --git a/Cargo.toml b/Cargo.toml index 9ecd10fb..a14984a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning" -version = "0.0.6" +version = "0.0.7" authors = ["Matt Corallo"] license = "Apache-2.0" repository = "https://github.com/rust-bitcoin/rust-lightning/" @@ -14,7 +14,7 @@ build = "build.rs" [features] # Supports tracking channels with a non-bitcoin chain hashes. Currently enables all kinds of fun DoS attacks. non_bitcoin_chain_hash_routing = [] -fuzztarget = ["secp256k1/fuzztarget", "bitcoin/fuzztarget"] +fuzztarget = ["secp256k1/fuzztarget", "bitcoin/fuzztarget", "bitcoin_hashes/fuzztarget"] # Unlog messages superior at targeted level. max_level_off = [] max_level_error = [] @@ -24,6 +24,7 @@ max_level_debug = [] [dependencies] bitcoin = "0.15" +bitcoin_hashes = { git = "https://github.com/TheBlueMatt/bitcoin_hashes", branch = "rust-lightning-dep" } rust-crypto = "0.2" rand = "0.4" secp256k1 = "0.11"