diff --git a/bitcoin/Cargo.toml b/bitcoin/Cargo.toml index 20f3c96b..e9616792 100644 --- a/bitcoin/Cargo.toml +++ b/bitcoin/Cargo.toml @@ -36,8 +36,8 @@ rustdoc-args = ["--cfg", "docsrs"] [dependencies] bitcoin-internals = { path = "../internals" } bech32 = { version = "0.9.0", default-features = false } -bitcoin_hashes = { version = "0.11.0", default-features = false } -secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-02-01--fix-hashes", default-features = false, features = ["bitcoin_hashes"] } +bitcoin_hashes = { version = "0.12.0", default-features = false } +secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-03-05--fix-hashes", default-features = false, features = ["bitcoin_hashes"] } hex_lit = "0.1.1" base64 = { version = "0.13.0", optional = true } @@ -50,7 +50,7 @@ actual-serde = { package = "serde", version = "1.0.103", default-features = fals serde_json = "1.0.0" serde_test = "1.0.19" serde_derive = "1.0.103" -secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-02-01--fix-hashes", features = ["recovery"] } +secp256k1 = { git = "https://github.com/rust-bitcoin/rust-secp256k1", tag = "2023-03-05--fix-hashes", features = ["recovery"] } bincode = "1.3.1" [target.'cfg(mutate)'.dev-dependencies] diff --git a/hashes/Cargo.toml b/hashes/Cargo.toml index 20f299f2..4239f43c 100644 --- a/hashes/Cargo.toml +++ b/hashes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bitcoin_hashes" -version = "0.11.0" +version = "0.12.0" authors = ["Andrew Poelstra "] license = "CC0-1.0" repository = "https://github.com/rust-bitcoin/bitcoin_hashes/"