From a544844b071ee37ca54b7a266b8ffb7672277d76 Mon Sep 17 00:00:00 2001 From: Ho Vei Date: Tue, 5 Dec 2023 11:41:08 +0800 Subject: [PATCH] + resume ethers-core's dep + ci not specify toolchain --- .github/workflows/ci.yml | 10 ---------- Cargo.toml | 2 +- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dd473c1..335ebac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,6 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly-2022-12-10 - override: true components: rustfmt - run: make fmt clippy: @@ -20,8 +18,6 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly-2022-12-10 - override: true components: clippy - run: make clippy test: @@ -31,8 +27,6 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly-2022-12-10 - override: true - run: make test par-test: runs-on: ubuntu-latest @@ -41,8 +35,6 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly-2022-12-10 - override: true - run: make test_par bench: runs-on: ubuntu-latest @@ -51,6 +43,4 @@ jobs: - uses: actions-rs/toolchain@v1 with: profile: minimal - toolchain: nightly-2022-12-10 - override: true - run: make bench diff --git a/Cargo.toml b/Cargo.toml index 19e3b10..e9c60e8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -ethers-core = { git = "https://github.com/scroll-tech/ethers-rs.git", branch = "v2.0.7", features = ["scroll"] } +ethers-core = "2.0.7" itertools = "0.10.5" 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" }