rust: Migrate to `zcash_client_backend 0.10.0-rc.2` etc

This commit is contained in:
Jack Grigg 2023-09-12 15:24:45 +00:00
parent d162cdf35f
commit d775421f5a
2 changed files with 6 additions and 6 deletions

View File

@ -2112,9 +2112,9 @@ dependencies = [
[[package]] [[package]]
name = "zcash_client_backend" name = "zcash_client_backend"
version = "0.10.0-rc.1" version = "0.10.0-rc.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3dc7204683d2ef58f87a78168f7135edd2612a888d1663812e642d5835b32607" checksum = "432f902a7308d10435351275a33629c61905f5b4289dc8b89259b1b8c1a87a86"
dependencies = [ dependencies = [
"base64", "base64",
"bech32", "bech32",
@ -2147,9 +2147,9 @@ dependencies = [
[[package]] [[package]]
name = "zcash_client_sqlite" name = "zcash_client_sqlite"
version = "0.8.0-rc.1" version = "0.8.0-rc.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8095730f4fcc20c5eeacee2a9edec10f1e600770e254fcdba6bc6abb2ebd320" checksum = "9746289b9650b14f5d24446c01e8398739e82a8bb8350eafa6a057e3a7f08c7e"
dependencies = [ dependencies = [
"bs58", "bs58",
"byteorder", "byteorder",

View File

@ -22,8 +22,8 @@ schemer = "0.2"
secp256k1 = "0.26" secp256k1 = "0.26"
secrecy = "0.8" secrecy = "0.8"
zcash_address = "0.3" zcash_address = "0.3"
zcash_client_backend = { version = "=0.10.0-rc.1", features = ["transparent-inputs", "unstable"] } zcash_client_backend = { version = "=0.10.0-rc.2", features = ["transparent-inputs", "unstable", "unstable-serialization"] }
zcash_client_sqlite = { version = "=0.8.0-rc.1", features = ["transparent-inputs", "unstable"] } zcash_client_sqlite = { version = "=0.8.0-rc.2", features = ["transparent-inputs", "unstable"] }
zcash_primitives = "=0.13.0-rc.1" zcash_primitives = "=0.13.0-rc.1"
zcash_proofs = "=0.13.0-rc.1" zcash_proofs = "=0.13.0-rc.1"
orchard = { version = "0.6", default-features = false } orchard = { version = "0.6", default-features = false }