From 7d0803caa8b37dfca08a2300eec1695b0db61b65 Mon Sep 17 00:00:00 2001 From: elsirion Date: Mon, 11 Nov 2024 11:29:52 -0500 Subject: [PATCH] chore: allow using `bitcoin_hashes` v0.14 It appears to be API-compatible for the purposes of this crate, so there should be no harm in allowing it and will help others projects deduplicate dependencies. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cc521ff..4659acf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,13 +49,13 @@ serde = { version = "1.0", default-features = false, features = [ "alloc" ], opt zeroize = { version = "1.5", features = ["zeroize_derive"], optional = true } # Unexported dependnecies -bitcoin_hashes = { version = ">=0.12, <=0.13", default-features = false } +bitcoin_hashes = { version = ">=0.12, <=0.14", default-features = false } unicode-normalization = { version = "=0.1.22", default-features = false, optional = true } [dev-dependencies] # Enabling the "rand" feature by default to run the benches bip39 = { path = ".", features = ["rand"] } -bitcoin_hashes = ">=0.12,<0.14" # enable default features for test +bitcoin_hashes = ">=0.12,<=0.14" # enable default features for test [package.metadata.docs.rs]