diff --git a/Cargo.lock b/Cargo.lock index 6703b2fdcbe..05012191124 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1224,7 +1224,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7c24f403d068ad0b359e577a77f92392118be3f3c927538f2bb544a5ecd828c6" dependencies = [ "curve25519-dalek", - "hashbrown 0.12.1", + "hashbrown", "hex", "rand_core 0.6.4", "serde", @@ -5311,12 +5311,14 @@ dependencies = [ "blake2b_simd", "blake2s_simd", "bls12_381", + "bs58", "byteorder", "chacha20poly1305 0.10.1", "equihash", "ff", "fpe", "group", + "hdwallet", "hex", "incrementalmerkletree", "jubjub", @@ -5326,6 +5328,8 @@ dependencies = [ "orchard 0.3.0", "rand 0.8.5", "rand_core 0.6.4", + "ripemd", + "secp256k1", "sha2", "subtle", "zcash_address", @@ -5432,7 +5436,7 @@ dependencies = [ "zcash_encoding 0.1.0", "zcash_history", "zcash_note_encryption 0.1.0", - "zcash_primitives 0.7.0", + "zcash_primitives 0.8.1", "zebra-test", ] diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 4e8ba00872e..627ccb83cc1 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -46,7 +46,7 @@ orchard = "0.2.0" zcash_encoding = "0.1.0" zcash_history = "0.3.0" zcash_note_encryption = "0.1" -zcash_primitives = { version = "0.7.0", features = ["transparent-inputs"] } +zcash_primitives = { version = "0.8.1", features = ["transparent-inputs"] } # Time chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "serde"] }