zcash_client_sqlite 0.5

This commit is contained in:
Jack Grigg 2023-07-05 02:26:32 +00:00
parent 6e36725fa0
commit cb92a67534
2 changed files with 13 additions and 12 deletions

16
Cargo.lock generated
View File

@ -2778,9 +2778,9 @@ dependencies = [
[[package]]
name = "zcash_client_backend"
version = "0.6.1"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e90362fd61a41f694c072d8db0f8dd59a1fdc902cab3602c42e755d1b9882831"
checksum = "54c054a049b69506098b5fa44830d4196a8bbea7bee9762718f251f1c4d8277e"
dependencies = [
"base64 0.13.1",
"bech32 0.8.1",
@ -2810,9 +2810,9 @@ dependencies = [
[[package]]
name = "zcash_client_sqlite"
version = "0.4.2"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2b1bfd170ee7e73b390dac2799ffbc8bb83724aa3e3cb24f5e83089c97afefd"
checksum = "1df5fd0152fd7207100581918ce772348266f1173cfb0f0a3f3900ac824cacb5"
dependencies = [
"bs58",
"group",
@ -2854,9 +2854,9 @@ dependencies = [
[[package]]
name = "zcash_primitives"
version = "0.9.1"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f9a45953c4ddd81d68f45920955707f45c8926800671f354dd13b97507edf28"
checksum = "ec8aed1d098e9f1b2bcd957ceab4188bf343cea30e7d0327fa49cea6ec44b167"
dependencies = [
"aes",
"bip0039",
@ -2887,9 +2887,9 @@ dependencies = [
[[package]]
name = "zcash_proofs"
version = "0.9.0"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77381adc72286874e563ee36ba99953946abcbd195ada45440a2754ca823d407"
checksum = "28ca180a8138ae6e2de2b88573ed19dd57798f42a79a00d992b4d727132c7081"
dependencies = [
"bellman",
"blake2b_simd",

View File

@ -2,6 +2,7 @@
name = "zec-sqlite-cli"
version = "0.1.0"
edition = "2021"
rust-version = "1.60"
license = "MIT OR Apache-2.0"
publish = false
@ -15,7 +16,7 @@ secrecy = "0.8"
tls-api-rustls = "0.6"
tokio = { version = "1.21.0", features = ["fs", "macros", "rt-multi-thread"] }
tonic = { version = "0.8", features = ["gzip", "tls-webpki-roots"] }
zcash_client_backend = { version = "0.6", features = ["lightwalletd-tonic"] }
zcash_client_sqlite = { version = "0.4", features = ["unstable"] }
zcash_primitives = "0.9"
zcash_proofs = "0.9"
zcash_client_backend = { version = "0.7", features = ["lightwalletd-tonic"] }
zcash_client_sqlite = { version = "0.5", features = ["unstable"] }
zcash_primitives = "0.10"
zcash_proofs = "0.10"