-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2474 from o1-labs/volhovm/arkworks042-compatible
Upgrade to arkworks 0.4.2 (mina compatible / p-s develop)
- Loading branch information
Showing
91 changed files
with
2,199 additions
and
765 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
- name: Checkout PR | ||
uses: actions/[email protected] | ||
with: | ||
submodules: true | ||
submodules: true | ||
|
||
# as action-rs does not seem to be maintained anymore, building from | ||
# scratch the environment using rustup | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
[package] | ||
name = "circuit-construction" | ||
version = "0.1.0" | ||
description = "A simple circuit writer for kimchi" | ||
repository = "https://github.com/o1-labs/proof-systems" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
homepage = "https://o1-labs.github.io/proof-systems/" | ||
documentation = "https://o1-labs.github.io/proof-systems/rustdoc/" | ||
readme = "../README.md" | ||
|
||
[lib] | ||
path = "src/lib.rs" | ||
bench = false # needed for criterion (https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options) | ||
|
||
[dependencies] | ||
ark-ff = { version = "0.4.2", features = [ "parallel", "asm" ] } | ||
ark-ec = { version = "0.4.2", features = [ "parallel" ] } | ||
ark-poly = { version = "0.4.2", features = [ "parallel" ] } | ||
ark-serialize = "0.4.2" | ||
blake2 = "0.10.0" | ||
num-derive = "0.3" | ||
num-traits = "0.2" | ||
itertools = "0.10.3" | ||
rand = "0.8.0" | ||
rand_core = "0.6.3" | ||
rayon = "1.5.0" | ||
rmp-serde = "1.0.0" | ||
serde = "1.0.130" | ||
serde_with = "1.10.0" | ||
thiserror = "1.0.30" | ||
|
||
poly-commitment = { path = "../poly-commitment", version = "0.1.0" } | ||
groupmap = { path = "../groupmap", version = "0.1.0" } | ||
mina-curves = { path = "../curves", version = "0.1.0" } | ||
o1-utils = { path = "../utils", version = "0.1.0" } | ||
mina-poseidon = { path = "../poseidon", version = "0.1.0" } | ||
kimchi = { path = "../kimchi", version = "0.1.0" } | ||
|
||
[dev-dependencies] | ||
proptest = "1.0.0" | ||
proptest-derive = "0.3.0" | ||
colored = "2.0.0" | ||
|
||
# benchmarks | ||
criterion = "0.3" | ||
iai = "0.1" |
Oops, something went wrong.