From ba94878fc9c7a33f62d5dcd80555d51657f330d8 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Wed, 27 Jul 2022 12:03:08 +1000 Subject: [PATCH] Upgrade bech32 to version 0.9.0 Recently `rust-bech32` v0.9.0 was released, this release included updating the MSRV to 1.41.1. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 1e44352..c184215 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ features = [ "std", "secp-recovery", "base64", "rand", "serde", "bitcoinconsensu rustdoc-args = ["--cfg", "docsrs"] [dependencies] -bech32 = { version = "0.8.1", default-features = false } +bech32 = { version = "0.9.0", default-features = false } bitcoin_hashes = { version = "0.11.0", default-features = false } secp256k1 = { version = "0.24.0", default-features = false, features = ["bitcoin_hashes"] } core2 = { version = "0.3.0", optional = true, default-features = false }