X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=Cargo.toml;h=a14984a00b90f64ff4d5b2bfe58fdd6f085627ef;hb=09c7f2f641d2496c2a6280b032f62b6249298a0f;hp=c8248518f215678bdde5c28784c4946912ea4c6a;hpb=d2a6ca529fe611c0996126c7040eeadcc5dc7986;p=rust-lightning diff --git a/Cargo.toml b/Cargo.toml index c8248518..a14984a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "lightning" -version = "0.0.5" +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 = [] @@ -23,7 +23,8 @@ max_level_info = [] max_level_debug = [] [dependencies] -bitcoin = "0.14" +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" @@ -32,7 +33,7 @@ secp256k1 = "0.11" cc = "1.0" [dev-dependencies.bitcoin] -version = "0.14" +version = "0.15" features = ["bitcoinconsensus"] [dev-dependencies]