Merge pull request #824 from zcash/823-secp256k1-0.26

Migrate to `secp256k1 0.26`, `hdwallet 0.4`
This commit is contained in:
str4d 2023-05-08 18:55:14 +01:00 committed by GitHub
commit 62bc15ccf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 4 deletions

View File

@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Changed
- Bumped dependencies to `hdwallet 0.4`.
## [0.9.0] - 2023-04-28
### Added

View File

@ -36,7 +36,7 @@ bech32 = "0.9"
bs58 = { version = "0.4", features = ["check"] }
# - Errors
hdwallet = { version = "0.3.1", optional = true }
hdwallet = { version = "0.4", optional = true }
# - Logging and metrics
memuse = "0.2"

View File

@ -6,6 +6,8 @@ and this library adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Changed
- Bumped dependencies to `hdwallet 0.4`.
## [0.7.0] - 2023-04-28
### Changed

View File

@ -21,7 +21,7 @@ zcash_primitives = { version = "0.11", path = "../zcash_primitives", default-fea
# (Breaking upgrades to these require a breaking upgrade to this crate.)
# - Errors
bs58 = { version = "0.4", features = ["check"] }
hdwallet = { version = "0.3.1", optional = true }
hdwallet = { version = "0.4", optional = true }
# - Logging and metrics
tracing = "0.1"

View File

@ -7,6 +7,7 @@ and this library adheres to Rust's notion of
## [Unreleased]
### Changed
- Bumped dependencies to `secp256k1 0.26`, `hdwallet 0.4`.
- `zcash_primitives::transactions::component::amount::DEFAULT_FEE` increased zip317
minimum possible fee.

View File

@ -55,9 +55,9 @@ proptest = { version = "1.0.0", optional = true }
# - Transparent inputs
# - `Error` type exposed
hdwallet = { version = "0.3.1", optional = true }
hdwallet = { version = "0.4", optional = true }
# - `SecretKey` and `PublicKey` types exposed
secp256k1 = { version = "0.21", optional = true }
secp256k1 = { version = "0.26", optional = true }
# - ZIP 339
bip0039 = { version = "0.10", features = ["std", "all-languages"] }