From edb1941f19d85fb6dff11440e03cd53f2c5494ed Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 12 Apr 2023 16:19:03 +0000 Subject: [PATCH] zcash_primitives: Downgrade to `bip0039 0.10` `bip0039 0.11` switched from language function arguments to a generic parameter. We aren't ready to migrate to this yet. --- zcash_primitives/CHANGELOG.md | 2 +- zcash_primitives/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zcash_primitives/CHANGELOG.md b/zcash_primitives/CHANGELOG.md index 7bb229877..25d0cf6ff 100644 --- a/zcash_primitives/CHANGELOG.md +++ b/zcash_primitives/CHANGELOG.md @@ -9,7 +9,7 @@ and this library adheres to Rust's notion of ### Changed - Bumped dependencies to `bls12_381 0.8`, `ff 0.13`, `group 0.13`, - `jubjub 0.10`, `orchard 0.4`, `sha2 0.10`, `bip0039 0.11`. + `jubjub 0.10`, `orchard 0.4`, `sha2 0.10`, `bip0039 0.10`. ## [0.10.2] - 2023-03-16 ### Added diff --git a/zcash_primitives/Cargo.toml b/zcash_primitives/Cargo.toml index e75f326fc..22fade188 100644 --- a/zcash_primitives/Cargo.toml +++ b/zcash_primitives/Cargo.toml @@ -60,7 +60,7 @@ hdwallet = { version = "0.3.1", optional = true } secp256k1 = { version = "0.21", optional = true } # - ZIP 339 -bip0039 = { version = "0.11", features = ["std", "all-languages"] } +bip0039 = { version = "0.10", features = ["std", "all-languages"] } # Dependencies used internally: # (Breaking upgrades to these are usually backwards-compatible, but check MSRVs.)