Skip to content

Commit

Permalink
Merge pull request #106 from zkcrypto/groth16
Browse files Browse the repository at this point in the history
Move `bellman::groth16` into a separate crate
  • Loading branch information
str4d authored Jul 15, 2024
2 parents e137775 + c4672fc commit 3a1c43b
Show file tree
Hide file tree
Showing 19 changed files with 1,029 additions and 53 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Run tests
run: cargo test --verbose --release
run: cargo test --verbose --release --workspace

build:
name: Build target ${{ matrix.target }}
Expand All @@ -31,7 +31,7 @@ jobs:
- name: Add target
run: rustup target add ${{ matrix.target }}
- name: Build for target
run: cargo build --verbose --target ${{ matrix.target }} ${{ matrix.build_flags }}
run: cargo build --verbose --workspace --target ${{ matrix.target }} ${{ matrix.build_flags }}

bitrot:
name: Bitrot check
Expand All @@ -41,7 +41,7 @@ jobs:
- uses: actions/checkout@v3
# Build benchmarks to prevent bitrot
- name: Build benchmarks
run: cargo build --benches --all-features
run: cargo build --benches --workspace --all-features

doc-links:
name: Intra-doc links
Expand All @@ -50,7 +50,7 @@ jobs:
- uses: actions/checkout@v3
# Requires #![deny(rustdoc::broken_intra_doc_links)] in crates.
- name: Check intra-doc links
run: cargo doc --document-private-items
run: cargo doc --workspace --document-private-items

fmt:
name: Rustfmt
Expand All @@ -59,4 +59,4 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Check formatting
run: cargo fmt -- --check
run: cargo fmt --all -- --check
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
target
Cargo.lock
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ and this project adheres to Rust's notion of
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
### Removed
- `bellman::groth16` (moved to the `groth16` crate).

## [0.14.0] - 2023-03-20
### Changed
Expand Down
Loading

0 comments on commit 3a1c43b

Please sign in to comment.