Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,5 @@ jobs:
run: cargo run --example homomorphic --features backends
- name: Run non_square example
run: cargo run --example non_square --features backends
- name: Run homomorphic_mixed_sizes example
run: cargo run --example homomorphic_mixed_sizes --features backends
149 changes: 4 additions & 145 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,13 @@ arkworks = [
]
parallel = ["dep:rayon", "ark-ec?/parallel", "ark-ff?/parallel"]
cache = ["arkworks", "dep:once_cell", "parallel"]
disk-persistence = ["dep:dirs"]
disk-persistence = []

[dependencies]
thiserror = "2.0"
rand_core = "0.6"
dory-derive = { version = "0.1.0", path = "derive" }
tracing = "0.1"
dirs = { version = "5.0", optional = true }

# Arkworks backend
ark-bn254 = { version = "0.5.0", optional = true }
Expand Down Expand Up @@ -85,6 +84,10 @@ required-features = ["backends"]
name = "non_square"
required-features = ["backends"]

[[example]]
name = "homomorphic_mixed_sizes"
required-features = ["backends"]

[[bench]]
name = "arkworks_proof"
harness = false
Expand Down
Loading