Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.5 #68

Draft
wants to merge 24 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
97e8ee3
move to 0.5 alpha release
mmagician Jun 21, 2024
05b77f0
update mycircuit circom file and its r1cs output
mmagician Jul 13, 2024
284e60f
gitignore ptau files
mmagician Jul 13, 2024
021c269
deprecate circom1
mmagician Jul 13, 2024
44eae79
update safe circuit (circuit2) code
mmagician Jul 13, 2024
4861072
remove the test case as we no longer have circom to reproduce it
mmagician Jul 13, 2024
6e982e3
remove n_vars, no longer used as its implicit
mmagician Jul 13, 2024
79a070f
fix groth16 tests
mmagician Jul 13, 2024
94faeaf
provide full paths to wasm location
mmagician Jul 13, 2024
1c2e578
edit msg
mmagician Jul 13, 2024
bc2c1a5
remove unused files
mmagician Jul 17, 2024
0a8d371
removed unused `version` key from `rust-toolchain.toml`, use latest s…
mmagician Jul 17, 2024
7045748
use stable rust in CI
mmagician Jul 17, 2024
ad2a672
inline code
mmagician Jul 17, 2024
a6cde19
cargo update to catch the latest groth16 release
mmagician Jul 17, 2024
04d75b0
remove deprecated feature flag from CI
mmagician Jul 17, 2024
d8d18f8
Rust limitation no longer applies; warning about circom/arkworks diff
mmagician Jul 18, 2024
e3bfb81
release numbering consistency across arkworks
mmagician Jul 18, 2024
cdecd2f
add homepage & repo manifest fields
mmagician Jul 18, 2024
c54c0bc
Merge branch 'master' into release-0.5
mmagician Jul 19, 2024
83b3061
fix: Wasm compilation for wasm32-wasi target (#74)
CPerezz Aug 23, 2024
7fc7ff3
ignore cargo.lock
mmagician Sep 11, 2024
705dd7c
update wasix version
mmagician Sep 11, 2024
2e8051d
add a wasm compilation CI check
mmagician Sep 11, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.74.0
toolchain: stable
override: true

# Install for Anvil
Expand All @@ -34,11 +34,6 @@ jobs:
export PATH=$HOME/bin:$PATH
cargo test

- name: cargo test circom 2 feature flag
run: |
export PATH=$HOME/bin:$PATH
cargo test --features circom-2

lint:
runs-on: ubuntu-latest
steps:
Expand All @@ -48,10 +43,25 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.74.0
toolchain: stable
override: true
components: rustfmt, clippy
- name: cargo fmt
run: cargo fmt --all -- --check
- name: cargo clippy
run: cargo clippy -- -D warnings

wasm32-wasip1-check:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v2
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: wasm32-wasip1
- name: Check wasm32-wasip compilation
run: cargo check --target wasm32-wasip1 --no-default-features --features="wasm"
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/target
Cargo.lock
*.ptau
Loading
Loading