From b0fd687428a4c2936402ed5f2fc4868892dc3d6f Mon Sep 17 00:00:00 2001 From: han0110 Date: Fri, 23 Dec 2022 15:39:28 +0800 Subject: [PATCH] chore: update `snark-verifier` dependency url and tag --- Cargo.lock | 2 +- zkevm-circuits/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index efe7602ef7..7fc5230f4a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3948,7 +3948,7 @@ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" [[package]] name = "snark-verifier" version = "0.1.0" -source = "git+https://github.com/han0110/plonk-verifier.git?branch=feature/restructure#84bb6f9f7d6e25d23914d540d48af8b915d2b7a0" +source = "git+https://github.com/privacy-scaling-explorations/snark-verifier?tag=v2022_12_23#dda742375cf87a268cba416b85a1d1b4e3383378" dependencies = [ "ecc", "halo2_proofs 0.2.0", diff --git a/zkevm-circuits/Cargo.toml b/zkevm-circuits/Cargo.toml index 6dc371784f..e90f5cfc7b 100644 --- a/zkevm-circuits/Cargo.toml +++ b/zkevm-circuits/Cargo.toml @@ -35,7 +35,7 @@ libsecp256k1 = "0.7" num-bigint = { version = "0.4" } subtle = "2.4" rand_chacha = "0.3" -snark-verifier = { git = "https://github.com/han0110/plonk-verifier.git", branch = "feature/restructure", default-features = false, features = ["loader_halo2", "system_halo2"] } +snark-verifier = { git = "https://github.com/privacy-scaling-explorations/snark-verifier", tag = "v2022_12_23", default-features = false, features = ["loader_halo2", "system_halo2"] } [dev-dependencies] bus-mapping = { path = "../bus-mapping", features = ["test"] }