From 53115e4b43fca8097244b9bf93bcdc14b026d58e Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Fri, 4 Jun 2021 21:51:04 +0100 Subject: [PATCH] Migrate to bitvec 0.22, ff 0.10, etc. Requires patching three dependencies: - bellman is pending a new release. - nom is part of the funty breakage; we are blocking on a new release. - orchard is in development. Extracted from: https://github.com/zcash/librustzcash/commit/1222391dd737bebdc6cc29500ac2e254ef052e9b --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5ddfac7..a0e1946 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,11 +15,11 @@ edition = "2018" blake2b_simd = "0.5" byteorder = "1" crypto_api_chachapoly = "0.4" -ff = "0.9" -group = "0.9" +ff = "0.10" +group = "0.10" rand_core = "0.6" subtle = "2.2.3" [dev-dependencies] zcash_primitives = { version = "0.5", path = "../../zcash_primitives" } -jubjub = "0.6" +jubjub = "0.7"