From 2662d549f43ca9f99cb32851d900bd1dee9790e2 Mon Sep 17 00:00:00 2001 From: Eduard S Date: Wed, 1 Mar 2023 16:39:03 +0100 Subject: [PATCH] test halo2 wigh generic inner impls --- Cargo.lock | 3 ++- Cargo.toml | 7 +++++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 297e912aa0..1bff81a633 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2053,12 +2053,13 @@ dependencies = [ [[package]] name = "halo2_proofs" version = "0.2.0" -source = "git+https://github.com/privacy-scaling-explorations/halo2.git?tag=v2023_02_02#0a8646b78286a13d320759b1c585262d6536dce4" +source = "git+https://github.com/ed255/halo2.git?branch=feature/generics-inner1#f13451e5ad107d5efc107e318880d32a019cccfa" dependencies = [ "blake2b_simd", "ff", "group", "halo2curves 0.3.1", + "rand_chacha", "rand_core", "rayon", "sha3 0.9.1", diff --git a/Cargo.toml b/Cargo.toml index 100836d5ce..39506e0171 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,8 +13,11 @@ members = [ "testool" ] -[patch.crates-io] -halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", tag = "v2023_02_02" } +# [patch.crates-io] +# halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", tag = "v2023_02_02" } + +[patch."https://github.com/privacy-scaling-explorations/halo2.git"] +halo2_proofs = { git = "https://github.com/ed255/halo2.git", branch = "feature/generics-inner1" } # Definition of benchmarks profile to use. [profile.bench]