From e2c24fcd5c5cadadd56aa2469e78a69d203e5a45 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 10 May 2022 22:44:53 +0000 Subject: [PATCH] halo2_proofs 0.1 --- CHANGELOG.md | 2 +- Cargo.toml | 8 +++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1144f838..5f98d642 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to Rust's notion of ## [Unreleased] ### Changed - Migrated to `bitvec 1`, `ff 0.12`, `group 0.12`, `incrementalmerkletree 0.3`, - `pasta_curves 0.4`. + `pasta_curves 0.4`, `halo2_proofs 0.1`. - `orchard::bundle`: - `Action` has been moved to `orchard::Action`. - `Bundle::{try_}authorize` have been renamed to diff --git a/Cargo.toml b/Cargo.toml index fd5db554..e0660d0a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,8 +29,8 @@ blake2b_simd = "1" ff = "0.12" fpe = "0.5" group = "0.12" -halo2_gadgets = "=0.1.0-beta.3" -halo2_proofs = "=0.1.0-beta.4" +halo2_gadgets = "0.1" +halo2_proofs = "0.1" hex = "0.4" lazy_static = "1" memuse = { version = "0.2", features = ["nonempty"] } @@ -49,7 +49,7 @@ plotters = { version = "0.3.0", optional = true } [dev-dependencies] criterion = "0.3" -halo2_gadgets = { version = "=0.1.0-beta.3", features = ["test-dependencies"] } +halo2_gadgets = { version = "0.1", features = ["test-dependencies"] } hex = "0.4" proptest = "1.0.0" zcash_note_encryption = { version = "0.1", features = ["pre-zip-212"] } @@ -83,6 +83,4 @@ debug = true debug = true [patch.crates-io] -halo2_gadgets = { git = "https://github.com/zcash/halo2.git", rev = "50921f95f7d4edf48f79ffba3b892a983d91ed7f" } -halo2_proofs = { git = "https://github.com/zcash/halo2.git", rev = "50921f95f7d4edf48f79ffba3b892a983d91ed7f" } reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "0e912de3000fe165daf58ad98d1a22f1a66e7f18" }