Merge pull request #1246 from zcash/zcb-0.11-zcs-0.9-doc-fixes
`zcash_client_backend 0.11.1`, `zcash_client_sqlite 0.9.1` with doc fixes
This commit is contained in:
commit
19868af84a
|
@ -3007,7 +3007,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zcash_client_backend"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"base64",
|
||||
|
@ -3053,7 +3053,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "zcash_client_sqlite"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
dependencies = [
|
||||
"assert_matches",
|
||||
"bs58",
|
||||
|
|
|
@ -89,6 +89,11 @@ and this library adheres to Rust's notion of
|
|||
allowed amounts having a decimal point but no decimal value to be parsed
|
||||
as valid.
|
||||
|
||||
## [0.11.1] - 2024-03-09
|
||||
|
||||
### Fixed
|
||||
- Documentation now correctly builds with all feature flags.
|
||||
|
||||
## [0.11.0] - 2024-03-01
|
||||
|
||||
### Added
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "zcash_client_backend"
|
||||
description = "APIs for creating shielded Zcash light clients"
|
||||
version = "0.11.0"
|
||||
version = "0.11.1"
|
||||
authors = [
|
||||
"Jack Grigg <jack@z.cash>",
|
||||
"Kris Nuttycombe <kris@electriccoin.co>"
|
||||
|
@ -21,7 +21,16 @@ exclude = ["*.proto"]
|
|||
development = ["zcash_proofs"]
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
# Manually specify features while `orchard` is not in the public API.
|
||||
#all-features = true
|
||||
features = [
|
||||
"lightwalletd-tonic",
|
||||
"transparent-inputs",
|
||||
"test-dependencies",
|
||||
"unstable",
|
||||
"unstable-serialization",
|
||||
"unstable-spanning-tree",
|
||||
]
|
||||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
|
|
|
@ -36,6 +36,11 @@ and this library adheres to Rust's notion of
|
|||
- `WalletMigrationError::AddressGeneration`
|
||||
- `WalletMigrationError::CannotRevert`
|
||||
|
||||
## [0.9.1] - 2024-03-09
|
||||
|
||||
### Fixed
|
||||
- Documentation now correctly builds with all feature flags.
|
||||
|
||||
## [0.9.0] - 2024-03-01
|
||||
|
||||
### Changed
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[package]
|
||||
name = "zcash_client_sqlite"
|
||||
description = "An SQLite-based Zcash light client"
|
||||
version = "0.9.0"
|
||||
version = "0.9.1"
|
||||
authors = [
|
||||
"Jack Grigg <jack@z.cash>",
|
||||
"Kris Nuttycombe <kris@electriccoin.co>"
|
||||
|
@ -15,7 +15,14 @@ rust-version.workspace = true
|
|||
categories.workspace = true
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
# Manually specify features while `orchard` is not in the public API.
|
||||
#all-features = true
|
||||
features = [
|
||||
"multicore",
|
||||
"test-dependencies",
|
||||
"transparent-inputs",
|
||||
"unstable",
|
||||
]
|
||||
rustdoc-args = ["--cfg", "docsrs"]
|
||||
|
||||
[dependencies]
|
||||
|
|
Loading…
Reference in New Issue