Skip to content

Commit

Permalink
Switch to workspace deps for circuit-construction and export_test_vec…
Browse files Browse the repository at this point in the history
…tors
  • Loading branch information
volhovm committed Sep 23, 2024
1 parent 3c6e2eb commit b05067c
Show file tree
Hide file tree
Showing 3 changed files with 50 additions and 108 deletions.
85 changes: 14 additions & 71 deletions Cargo.lock

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

52 changes: 26 additions & 26 deletions circuit-construction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,34 +14,34 @@ 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"
ark-ff.workspace = true
ark-ec.workspace = true
ark-poly.workspace = true
ark-serialize.workspace = true
blake2.workspace = true
num-derive.workspace = true
num-traits.workspace = true
itertools.workspace = true
rand.workspace = true
rand_core.workspace = true
rayon.workspace = true
rmp-serde.workspace = true
serde.workspace = true
serde_with.workspace = true
thiserror.workspace = true

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" }
poly-commitment.workspace = true
groupmap.workspace = true
mina-curves.workspace = true
o1-utils.workspace = true
mina-poseidon.workspace = true
kimchi.workspace = true

[dev-dependencies]
proptest = "1.0.0"
proptest-derive = "0.3.0"
colored = "2.0.0"
proptest.workspace = true
proptest-derive.workspace = true
colored.workspace = true

# benchmarks
criterion = "0.3"
iai = "0.1"
criterion.workspace = true
iai.workspace = true
21 changes: 10 additions & 11 deletions poseidon/export_test_vectors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,14 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
ark-ff = { version = "0.4.2", features = [ "parallel", "asm" ] }
num-bigint = { version = "0.4.0" }
serde_json = { version = "1.0" }
hex = { version = "0.4" }
ark-serialize = { version = "0.4.2" }
rand = "0.8.0"
serde = { version = "1.0", features = ["derive"] }
serde_with = "1.10.0"

mina-curves = { path = "../../curves", version = "0.1.0" }
mina-poseidon = { path = "../../poseidon", version = "0.1.0" }
ark-ff.workspace = true
num-bigint.workspace = true
serde_json.workspace = true
hex.workspace = true
ark-serialize.workspace = true
rand.workspace = true
serde.workspace = true
serde_with.workspace = true

mina-curves.workspace = true
mina-poseidon.workspace = true

0 comments on commit b05067c

Please sign in to comment.