Upgrade to `bs58 0.5`
This commit is contained in:
parent
3dd0c63095
commit
75e529eea6
|
@ -7,6 +7,9 @@ and this library adheres to Rust's notion of
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
- Bumped bs58 dependency to `0.5`.
|
||||
|
||||
## [0.2.1] - 2023-04-15
|
||||
### Changed
|
||||
- Bumped internal dependency to `bech32 0.9`.
|
||||
|
|
|
@ -16,7 +16,7 @@ keywords = ["zcash", "address", "sapling", "unified"]
|
|||
|
||||
[dependencies]
|
||||
bech32 = "0.9"
|
||||
bs58 = { version = "0.4", features = ["check"] }
|
||||
bs58 = { version = "0.5", features = ["check"] }
|
||||
f4jumble = { version = "0.1", path = "../f4jumble" }
|
||||
zcash_encoding = { version = "0.2", path = "../zcash_encoding" }
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ and this library adheres to Rust's notion of
|
|||
### Changed
|
||||
- MSRV is now 1.65.0.
|
||||
- Bumped dependencies to `hdwallet 0.4`, `zcash_note_encryption 0.4`,
|
||||
`incrementalmerkletree 0.4`, `orchard 0.5`
|
||||
`incrementalmerkletree 0.4`, `orchard 0.5`, `bs58 0.5`
|
||||
- `WalletRead::get_memo` now returns `Result<Option<Memo>, Self::Error>`
|
||||
instead of `Result<Memo, Self::Error>` in order to make representable
|
||||
wallet states where the full note plaintext is not available.
|
||||
|
|
|
@ -34,7 +34,7 @@ time = "0.2"
|
|||
# - Encodings
|
||||
base64 = "0.21"
|
||||
bech32 = "0.9"
|
||||
bs58 = { version = "0.4", features = ["check"] }
|
||||
bs58 = { version = "0.5", features = ["check"] }
|
||||
|
||||
# - Errors
|
||||
hdwallet = { version = "0.4", optional = true }
|
||||
|
|
|
@ -8,7 +8,7 @@ and this library adheres to Rust's notion of
|
|||
## [Unreleased]
|
||||
### Changed
|
||||
- MSRV is now 1.65.0.
|
||||
- Bumped dependencies to `hdwallet 0.4`, `incrementalmerkletree 0.4`
|
||||
- Bumped dependencies to `hdwallet 0.4`, `incrementalmerkletree 0.4`, `bs58 0.5`
|
||||
|
||||
### Removed
|
||||
- The empty `wallet::transact` module has been removed.
|
||||
|
|
|
@ -21,7 +21,7 @@ zcash_primitives = { version = "0.11", path = "../zcash_primitives", default-fea
|
|||
# Dependencies exposed in a public API:
|
||||
# (Breaking upgrades to these require a breaking upgrade to this crate.)
|
||||
# - Errors
|
||||
bs58 = { version = "0.4", features = ["check"] }
|
||||
bs58 = { version = "0.5", features = ["check"] }
|
||||
hdwallet = { version = "0.4", optional = true }
|
||||
|
||||
# - Logging and metrics
|
||||
|
|
Loading…
Reference in New Issue