From a0831e5d00995c4fe37e961a07384bf5b59613b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 Jan 2025 11:44:27 +0000 Subject: [PATCH] build(deps): update bech32 requirement from 0.9.1 to 0.11.0 Updates the requirements on [bech32](https://github.com/rust-bitcoin/rust-bech32) to permit the latest version. - [Changelog](https://github.com/rust-bitcoin/rust-bech32/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-bitcoin/rust-bech32/compare/v0.9.1...v0.11.0) --- updated-dependencies: - dependency-name: bech32 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pallas-addresses/Cargo.toml | 2 +- pallas-primitives/Cargo.toml | 2 +- pallas-wallet/Cargo.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pallas-addresses/Cargo.toml b/pallas-addresses/Cargo.toml index b450c31e..ec042561 100644 --- a/pallas-addresses/Cargo.toml +++ b/pallas-addresses/Cargo.toml @@ -15,7 +15,7 @@ hex = "0.4.3" pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } base58 = "0.2.0" -bech32 = "0.9.1" +bech32 = "0.11.0" thiserror = "1.0" crc = "3.0.1" cryptoxide = "0.4" diff --git a/pallas-primitives/Cargo.toml b/pallas-primitives/Cargo.toml index af2a9eb3..768c415f 100644 --- a/pallas-primitives/Cargo.toml +++ b/pallas-primitives/Cargo.toml @@ -19,7 +19,7 @@ log = "0.4.14" pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } pallas-codec = { version = "=0.32.0", path = "../pallas-codec" } base58 = "0.2.0" -bech32 = "0.9.0" +bech32 = "0.11.0" serde = { version = "1.0.136", optional = true, features = ["derive"] } serde_json = { version = "1.0.79", optional = true } diff --git a/pallas-wallet/Cargo.toml b/pallas-wallet/Cargo.toml index b3dc5cff..61a3246c 100644 --- a/pallas-wallet/Cargo.toml +++ b/pallas-wallet/Cargo.toml @@ -16,5 +16,5 @@ pallas-crypto = { version = "=0.32.0", path = "../pallas-crypto" } ed25519-bip32 = "0.4.1" bip39 = { version = "2.0.0", features = ["rand_core"] } cryptoxide = "0.4.4" -bech32 = "0.9.1" +bech32 = "0.11.0" rand = "0.8.5"