Steal rust-crypto's ChaCha20 implementation wholesale
[rust-lightning] / Cargo.toml
index c8248518f215678bdde5c28784c4946912ea4c6a..a14984a00b90f64ff4d5b2bfe58fdd6f085627ef 100644 (file)
@@ -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]