Merge pull request #824 from zcash/823-secp256k1-0.26
Migrate to `secp256k1 0.26`, `hdwallet 0.4`
This commit is contained in:
commit
62bc15ccf0
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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"] }
|
||||
|
|
Loading…
Reference in New Issue