Update remaining Rust dependencies

This commit is contained in:
Jack Grigg 2020-09-22 18:54:44 +01:00 committed by Francisco Gindre
parent 48a601600b
commit 0ebb61dd0f
2 changed files with 7 additions and 13 deletions

16
Cargo.lock generated
View File

@ -465,9 +465,9 @@ dependencies = [
[[package]] [[package]]
name = "ffi_helpers" name = "ffi_helpers"
version = "0.1.0" version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "545c5db858a1f8749e81b22cb9e10a5412c9775441a53c4bd1d1f28531edc843" checksum = "36a21261040ffbc3999698b39170d6e951f2823dd9ad7b50469309156060a50c"
dependencies = [ dependencies = [
"failure", "failure",
"failure_derive", "failure_derive",
@ -565,12 +565,6 @@ dependencies = [
"libc", "libc",
] ]
[[package]]
name = "hex"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
[[package]] [[package]]
name = "hex" name = "hex"
version = "0.4.2" version = "0.4.2"
@ -627,7 +621,7 @@ dependencies = [
"cbindgen", "cbindgen",
"failure", "failure",
"ffi_helpers", "ffi_helpers",
"hex 0.3.2", "hex",
"zcash_client_backend", "zcash_client_backend",
"zcash_client_sqlite", "zcash_client_sqlite",
"zcash_primitives", "zcash_primitives",
@ -1302,7 +1296,7 @@ dependencies = [
"bs58", "bs58",
"ff", "ff",
"group", "group",
"hex 0.4.2", "hex",
"jubjub", "jubjub",
"protobuf", "protobuf",
"protobuf-codegen-pure", "protobuf-codegen-pure",
@ -1346,7 +1340,7 @@ dependencies = [
"ff", "ff",
"fpe", "fpe",
"group", "group",
"hex 0.4.2", "hex",
"jubjub", "jubjub",
"lazy_static", "lazy_static",
"log", "log",

View File

@ -9,8 +9,8 @@ build = "rust/build.rs"
[dependencies] [dependencies]
failure = "0.1" failure = "0.1"
ffi_helpers = "0.1" ffi_helpers = "0.2"
hex = "0.3" hex = "0.4"
zcash_client_backend = "0.4" zcash_client_backend = "0.4"
zcash_client_sqlite = "0.2" zcash_client_sqlite = "0.2"
zcash_primitives = "0.4" zcash_primitives = "0.4"