From 7a549696943575b6aeddabc004798ec90a9b01e0 Mon Sep 17 00:00:00 2001 From: Weikeng Chen Date: Sat, 19 Aug 2023 11:40:51 -0700 Subject: [PATCH 1/2] Update Cargo.toml --- ec/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ec/Cargo.toml b/ec/Cargo.toml index 29324211c..3afd938fa 100644 --- a/ec/Cargo.toml +++ b/ec/Cargo.toml @@ -24,7 +24,7 @@ rayon = { version = "1", optional = true } zeroize = { version = "1", default-features = false, features = ["zeroize_derive"] } hashbrown = "0.14.0" itertools = { version = "0.11", default-features = false } -num-bigint = "0.4.3" +num-bigint = { version = "0.4.3", default-features = false } [dev-dependencies] ark-test-curves = { version = "0.4.2", path = "../test-curves", default-features = false, features = ["bls12_381_curve"] } From 3c9a8c8ccb5b65e4ea71f26afc267a961a937075 Mon Sep 17 00:00:00 2001 From: Weikeng Chen Date: Sat, 19 Aug 2023 11:42:15 -0700 Subject: [PATCH 2/2] Update ci.yml --- .github/workflows/ci.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 66ac97290..e0697abfb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -163,13 +163,6 @@ jobs: uses: actions/checkout@v2 - name: Install Rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - target: thumbv6m-none-eabi - override: true - - - name: Install Rust ARM64 uses: actions-rs/toolchain@v1 with: toolchain: stable @@ -192,17 +185,17 @@ jobs: --exclude ark-algebra-test-templates \ --exclude ark-algebra-bench-templates \ --exclude ark-poly-benches \ - --target thumbv6m-none-eabi" + --target aarch64-unknown-none" - name: build uses: actions-rs/cargo@v1 with: command: build - args: "--examples --workspace \ + args: "--workspace \ --exclude ark-algebra-test-templates \ --exclude ark-algebra-bench-templates \ --exclude ark-poly-benches \ - --target thumbv6m-none-eabi" + --target aarch64-unknown-none" test_against_curves: name: Test against curves