Skip to content

Commit ad69619

Browse files
committed
Fix the hashes dependency range.
Use of `<= 0.14` was wrong because it would prevent upgrading to 0.14.1+ We expand the range by using `< 0.15` instead.
1 parent caf2f1a commit ad69619

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ serde = { version = "1.0.103", default-features = false, optional = true }
4141

4242
# You likely only want to enable these if you explicitly do not want to use "std", otherwise enable
4343
# the respective -std feature e.g., hashes-std
44-
hashes = { package = "bitcoin_hashes", version = ">= 0.12, <= 0.14", default-features = false, optional = true }
44+
hashes = { package = "bitcoin_hashes", version = ">= 0.12, < 0.15", default-features = false, optional = true }
4545
rand = { version = "0.8", default-features = false, optional = true }
4646

4747
[dev-dependencies]

0 commit comments

Comments
 (0)