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