Skip to content

Commit

Permalink
Workspace deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Dzejkop committed Sep 26, 2024
1 parent 98d5018 commit 5b206f4
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 14 deletions.
10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,9 @@ tiny-keccak = { version = "2.0.2" }
tracing-test = "0.2"
witness = { git = "https://github.com/philsippl/circom-witness-rs" }
zeroize = "1.6.0"
memmap2 = "0.9"
flame = "0.2"
flamer = "0.5"

# Proc macros
syn = { version = "2.0.9", features = ["full", "visit-mut", "extra-traits"] }
Expand All @@ -77,13 +80,13 @@ quote = "1.0.26"

# Ark
ark-bn254 = { version = "=0.4.0" }
ark-circom = { git = "https://github.com/arkworks-rs/circom-compat.git", rev = "f97ac2b", features = [
ark-circom = { git = "https://github.com/Dzejkop/circom-compat.git", rev = "625633e", features = [
"circom-2",
] }
ark-ec = { version = "0.4.1", default-features = false, features = [
ark-ec = { version = "0.4.2", default-features = false, features = [
"parallel",
] }
ark-ff = { version = "0.4.1", default-features = false, features = [
ark-ff = { version = "0.4.2", default-features = false, features = [
"parallel",
"asm",
] }
Expand All @@ -92,6 +95,7 @@ ark-relations = { version = "=0.4.0", default-features = false }
ark-std = { version = "0.4.0", default-features = false, features = [
"parallel",
] }
ark-serialize = { version = "0.4.2", features = ["derive"] }

[features]
default = []
Expand Down
22 changes: 11 additions & 11 deletions crates/ark-zkey/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ license.workspace = true
repository.workspace = true

[dependencies]
color-eyre = "0.6"
memmap2 = "0.9"
flame = "0.2"
flamer = "0.5"
color-eyre = { workspace = true }
memmap2 = { workspace = true }
flame = { workspace = true }
flamer = { workspace = true }

ark-serialize = { version = "=0.4.1", features = ["derive"] }
ark-bn254 = { version = "=0.4.0" }
ark-groth16 = { version = "=0.4.0" }
ark-circom = { git = "https://github.com/arkworks-rs/circom-compat.git", rev="f97ac2b", features = ["circom-2"] }
ark-relations = { version = "=0.4.0" }
ark-ff = { version = "=0.4.1" }
ark-ec = { version = "=0.4.1" }
ark-serialize = { workspace = true }
ark-bn254 = { workspace = true }
ark-groth16 = { workspace = true }
ark-circom = { workspace = true }
ark-relations = { workspace = true }
ark-ff = { workspace = true }
ark-ec = { workspace = true }

0 comments on commit 5b206f4

Please sign in to comment.