From 94892b5c8286ab22f3d291437c465f09181d970e Mon Sep 17 00:00:00 2001 From: Ho Vei Date: Fri, 1 Dec 2023 17:29:29 +0800 Subject: [PATCH] bump dep of poseidon to new stable branch --- Cargo.lock | 23 +++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ad257a..f09670c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -928,7 +928,7 @@ dependencies = [ "num", "num-bigint", "once_cell", - "poseidon-circuit", + "poseidon-circuit 0.1.0 (git+https://github.com/scroll-tech/poseidon-circuit.git?branch=sync-ff-0.13)", "regex", "serde", "serde_json", @@ -1250,7 +1250,7 @@ dependencies = [ "num-bigint", "num-traits", "plotters", - "poseidon-circuit", + "poseidon-circuit 0.1.0 (git+https://github.com/scroll-tech/poseidon-circuit.git?branch=scroll-dev-1201)", "rand", "rand_chacha", "serde", @@ -1275,7 +1275,7 @@ dependencies = [ "log", "num-bigint", "num-traits", - "poseidon-circuit", + "poseidon-circuit 0.1.0 (git+https://github.com/scroll-tech/poseidon-circuit.git?branch=sync-ff-0.13)", "rand", "rand_chacha", "serde", @@ -1652,7 +1652,7 @@ dependencies = [ "lazy_static", "log", "num-bigint", - "poseidon-circuit", + "poseidon-circuit 0.1.0 (git+https://github.com/scroll-tech/poseidon-circuit.git?branch=sync-ff-0.13)", "zktrie", ] @@ -1978,6 +1978,21 @@ dependencies = [ "subtle", ] +[[package]] +name = "poseidon-circuit" +version = "0.1.0" +source = "git+https://github.com/scroll-tech/poseidon-circuit.git?branch=scroll-dev-1201#c6f058bcf3bb0c7933d1979563c414f5cc480f25" +dependencies = [ + "bitvec", + "ff", + "halo2_proofs 0.2.0 (git+https://github.com/scroll-tech/halo2.git?branch=v1.0)", + "lazy_static", + "log", + "rand", + "rand_xorshift", + "thiserror", +] + [[package]] name = "poseidon-circuit" version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml index e6dcdda..b5555a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] ethers-core = "2.0.7" itertools = "0.10.5" -hash-circuit = { package = "poseidon-circuit", git = "https://github.com/scroll-tech/poseidon-circuit.git", branch = "sync-ff-0.13" } +hash-circuit = { package = "poseidon-circuit", git = "https://github.com/scroll-tech/poseidon-circuit.git", branch = "scroll-dev-1201" } halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2.git", tag = "v2022_09_10" } rand = "0.8" lazy_static = "1.4.0"