diff --git a/Cargo.lock b/Cargo.lock index c5966891149..59234e3473f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6197,6 +6197,16 @@ dependencies = [ "nonempty", ] +[[package]] +name = "zcash_encoding" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f03391b81727875efa6ac0661a20883022b6fba92365dc121c48fa9b00c5aac0" +dependencies = [ + "byteorder", + "nonempty", +] + [[package]] name = "zcash_history" version = "0.3.0" @@ -6397,7 +6407,7 @@ dependencies = [ "tracing", "uint", "x25519-dalek", - "zcash_encoding 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "zcash_encoding 0.2.0", "zcash_history", "zcash_note_encryption 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "zcash_primitives 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/zebra-chain/Cargo.toml b/zebra-chain/Cargo.toml index 249171a7504..4b5bf47481e 100644 --- a/zebra-chain/Cargo.toml +++ b/zebra-chain/Cargo.toml @@ -43,7 +43,7 @@ x25519-dalek = { version = "1.2.0", features = ["serde"] } # ECC deps halo2 = { package = "halo2_proofs", version = "0.2.0" } orchard = "0.2.0" -zcash_encoding = "0.1.0" +zcash_encoding = "0.2.0" zcash_history = "0.3.0" zcash_note_encryption = "0.1" zcash_primitives = { version = "0.7.0", features = ["transparent-inputs"] }