zcash_client_backend 0.10.0-rc.3

This commit is contained in:
Kris Nuttycombe 2023-09-19 14:56:01 -06:00
parent 0643678fe5
commit 6d2c53111a
4 changed files with 5 additions and 5 deletions

2
Cargo.lock generated
View File

@ -2946,7 +2946,7 @@ dependencies = [
[[package]] [[package]]
name = "zcash_client_backend" name = "zcash_client_backend"
version = "0.10.0-rc.2" version = "0.10.0-rc.3"
dependencies = [ dependencies = [
"assert_matches", "assert_matches",
"base64", "base64",

View File

@ -7,7 +7,7 @@ and this library adheres to Rust's notion of
## [Unreleased] ## [Unreleased]
## [0.10.0-rc.1] - 2023-09-08 ## [0.10.0-rc.3] - 2023-09-19
### Notable Changes ### Notable Changes
- `zcash_client_backend` now supports out-of-order scanning of blockchain history. - `zcash_client_backend` now supports out-of-order scanning of blockchain history.

View File

@ -1,7 +1,7 @@
[package] [package]
name = "zcash_client_backend" name = "zcash_client_backend"
description = "APIs for creating shielded Zcash light clients" description = "APIs for creating shielded Zcash light clients"
version = "0.10.0-rc.2" version = "0.10.0-rc.3"
authors = [ authors = [
"Jack Grigg <jack@z.cash>", "Jack Grigg <jack@z.cash>",
"Kris Nuttycombe <kris@electriccoin.co>" "Kris Nuttycombe <kris@electriccoin.co>"

View File

@ -14,7 +14,7 @@ edition = "2021"
rust-version = "1.65" rust-version = "1.65"
[dependencies] [dependencies]
zcash_client_backend = { version = "=0.10.0-rc.2", path = "../zcash_client_backend", features = ["unstable-serialization", "unstable-spanning-tree"]} zcash_client_backend = { version = "=0.10.0-rc.3", path = "../zcash_client_backend", features = ["unstable-serialization", "unstable-spanning-tree"]}
zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" } zcash_encoding = { version = "0.2", path = "../components/zcash_encoding" }
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false } zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", default-features = false }
@ -62,7 +62,7 @@ tempfile = "3.5.0"
zcash_note_encryption = "0.4" zcash_note_encryption = "0.4"
zcash_proofs = { version = "=0.13.0-rc.1", path = "../zcash_proofs" } zcash_proofs = { version = "=0.13.0-rc.1", path = "../zcash_proofs" }
zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", features = ["test-dependencies"] } zcash_primitives = { version = "=0.13.0-rc.1", path = "../zcash_primitives", features = ["test-dependencies"] }
zcash_client_backend = { version = "=0.10.0-rc.2", path = "../zcash_client_backend", features = ["test-dependencies", "unstable-serialization"] } zcash_client_backend = { version = "=0.10.0-rc.3", path = "../zcash_client_backend", features = ["test-dependencies", "unstable-serialization", "unstable-spanning-tree"] }
zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] } zcash_address = { version = "0.3", path = "../components/zcash_address", features = ["test-dependencies"] }
[features] [features]