From 141f15055c459231bffec862701bddac26c28bd2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 23 Aug 2026 09:39:39 +0000 Subject: [PATCH] deps: bump coins-bip32 from 0.8.7 to 0.13.1 Bumps [coins-bip32](https://github.com/summa-tx/coins) from 0.8.7 to 0.13.1. - [Release notes](https://github.com/summa-tx/coins/releases) - [Commits](https://github.com/summa-tx/coins/compare/v0.8.7...0.13.1) --- updated-dependencies: - dependency-name: coins-bip32 dependency-version: 0.13.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 42 +++--------------------------------------- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 40 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b170aac..0fc330e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -226,22 +226,6 @@ version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "0c9ea0ac24bc397ab3c98583a3c9ba74fa56b09a4449bbe172b9b1ddb016027a" -[[package]] -name = "coins-bip32" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3b6be4a5df2098cd811f3194f64ddb96c267606bffd9689ac7b0160097b01ad3" -dependencies = [ - "bs58", - "coins-core 0.8.7", - "digest 0.10.7", - "hmac 0.12.1", - "k256", - "serde", - "sha2 0.10.9", - "thiserror 1.0.69", -] - [[package]] name = "coins-bip32" version = "0.13.1" @@ -249,7 +233,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1fc16cf8742cbecd285d3465532affa37e23e8120a0ac813f613923c730cd9b" dependencies = [ "bs58", - "coins-core 0.13.1", + "coins-core", "digest 0.10.7", "getrandom 0.2.17", "getrandom 0.3.4", @@ -267,7 +251,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "57a98df2f583fadfaba6b093112a7f1220ff810ea65e41d2fb7ebbee7c265d33" dependencies = [ "bitvec", - "coins-bip32 0.13.1", + "coins-bip32", "getrandom 0.2.17", "getrandom 0.3.4", "hmac 0.12.1", @@ -277,26 +261,6 @@ dependencies = [ "thiserror 1.0.69", ] -[[package]] -name = "coins-core" -version = "0.8.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5286a0843c21f8367f7be734f89df9b822e0321d8bcce8d6e735aadff7d74979" -dependencies = [ - "base64 0.21.7", - "bech32 0.9.1", - "bs58", - "digest 0.10.7", - "generic-array", - "hex", - "ripemd 0.1.3", - "serde", - "serde_derive", - "sha2 0.10.9", - "sha3", - "thiserror 1.0.69", -] - [[package]] name = "coins-core" version = "0.13.1" @@ -1456,7 +1420,7 @@ dependencies = [ "async-trait", "bitcoin", "bs58", - "coins-bip32 0.8.7", + "coins-bip32", "coins-bip39", "ed25519-dalek", "hmac 0.13.0", diff --git a/Cargo.toml b/Cargo.toml index f90995e..26a81ad 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -72,7 +72,7 @@ ripemd = { version = "0.2", optional = true } # BIP-32 on secp256k1, backed by the pure-Rust `k256` rather than the # `secp256k1` C library. Deriving a key wrong is silent and unrecoverable, so # this stays delegated to a vetted implementation — see `src/key/bip32.rs`. -coins-bip32 = { version = "0.8", optional = true } +coins-bip32 = { version = "0.13", optional = true } # Keccak-256 for the EVM and Tron addresses key derivation produces. # # PINNED TO 0.10, and not by accident — do not let dependabot move it.