Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
49b3fc8
feat: update deps
alexander-camuto Apr 28, 2023
728931b
Update Cargo.toml
alexander-camuto Jun 2, 2023
b5ef30d
Update Cargo.toml
alexander-camuto Jun 7, 2023
693e8fb
Merge branch 'privacy-scaling-explorations:main' into ac/send-sync-re…
alexander-camuto Jun 7, 2023
9acce72
Update Cargo.toml
alexander-camuto Jul 31, 2023
97facaa
bump h2
alexander-camuto Aug 25, 2023
52394d8
Update Cargo.toml
alexander-camuto Aug 25, 2023
e6097cb
feat: add new parallel implementation for permute_expression_pair
alexander-camuto Sep 1, 2023
2f38026
Revert "feat: add new parallel implementation for permute_expression_…
alexander-camuto Sep 1, 2023
d673464
feat: add new parallel implementation for permute_expression_pair
alexander-camuto Sep 1, 2023
dace80a
feat: mv-lookup
alexander-camuto Sep 21, 2023
290f501
Update halo2.rs
alexander-camuto Sep 21, 2023
f6e7521
Update Cargo.toml
alexander-camuto Sep 21, 2023
fdc3df4
Revert "Update Cargo.toml"
alexander-camuto Sep 21, 2023
e7a781e
Update Cargo.toml
alexander-camuto Sep 23, 2023
709bb8e
Update Cargo.toml
alexander-camuto Oct 4, 2023
6aaf50a
Update Cargo.toml
alexander-camuto Oct 6, 2023
325c53c
Update Cargo.toml
alexander-camuto Oct 6, 2023
b2f3b8a
mvlookup compilation
alexander-camuto Oct 9, 2023
8e2e992
Update Cargo.toml
alexander-camuto Oct 19, 2023
8b866a7
Update Cargo.toml
alexander-camuto Nov 10, 2023
355a35e
Update Cargo.toml
alexander-camuto Nov 11, 2023
3293205
Update Cargo.toml
alexander-camuto Nov 28, 2023
dcda6a8
modularity over lookups
alexander-camuto Nov 28, 2023
a1ac764
Update halo2.rs
alexander-camuto Nov 28, 2023
22ee76b
Merge branch 'main' into ac/chunked-mv-lookup
alexander-camuto Dec 20, 2023
ee1f484
bump
alexander-camuto Jan 22, 2024
9e47138
Update util.rs
alexander-camuto Jan 22, 2024
574b65e
Update halo2.rs
alexander-camuto Jan 22, 2024
8762701
chore: bump h2curves
alexander-camuto Aug 18, 2024
508d96b
chore: fix updates
alexander-camuto Apr 28, 2025
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
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ members = [
"snark-verifier",
"snark-verifier-sdk"
]
resolver = "2"
6 changes: 3 additions & 3 deletions snark-verifier-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ ark-std = { version = "0.3.0", features = ["print-trace"], optional = true }
snark-verifier = { path = "../snark-verifier", default-features = false }

# system_halo2
halo2_proofs = { git = "https://github.com/privacy-scaling-explorations/halo2", tag = "v2023_04_20" } # not optional for now
halo2curves = { git = 'https://github.com/privacy-scaling-explorations/halo2curves', tag = "0.3.2" } # must be same version as in halo2_proofs
halo2_proofs = { git = "https://github.com/zkonduit/halo2" }
halo2curves = { package ="halo2curves", version = "0.6.0", features = ["derive_serde"] }

# loader_halo2
halo2_wrong_ecc = { git = "https://github.com/privacy-scaling-explorations/halo2wrong", tag = "v2023_04_20", package = "ecc", optional = true }
halo2_wrong_ecc = { git = "https://github.com/zkonduit/halo2wrong", branch = "ac/chunked-mv-lookup", package = "ecc", optional = true }
poseidon = { git = "https://github.com/privacy-scaling-explorations/poseidon", tag = "v2023_04_20", optional = true }

# loader_evm
Expand Down
184 changes: 0 additions & 184 deletions snark-verifier-sdk/examples/standard_plonk.rs

This file was deleted.

192 changes: 0 additions & 192 deletions snark-verifier-sdk/src/evm.rs

This file was deleted.

Loading