From ae1f8f460997a4d7dfa7552f27b481e81da6cfa2 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Wed, 8 Sep 2021 15:21:39 +1000 Subject: [PATCH] Bump bitcoin_hashes to version 0.10 Requires for interoperability of the `ThirtyTwoByteHash` trait with rust-bitcoin. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e545b2e..d2cce2a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ global-context-less-secure = [] [dependencies] secp256k1-sys = { version = "0.4.1", default-features = false, path = "./secp256k1-sys" } -bitcoin_hashes = { version = "0.9", optional = true } +bitcoin_hashes = { version = "0.10", optional = true } rand = { version = "0.6", default-features = false, optional = true } serde = { version = "1.0", default-features = false, optional = true } @@ -39,7 +39,7 @@ serde = { version = "1.0", default-features = false, optional = true } rand = "0.6" rand_core = "0.4" serde_test = "1.0" -bitcoin_hashes = "0.9" +bitcoin_hashes = "0.10" [target.wasm32-unknown-unknown.dev-dependencies] wasm-bindgen-test = "0.3"