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
23 changes: 5 additions & 18 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ark-crypto-primitives = {version = "^0.4.0", features = ["sponge","r1cs","snark"
ark-r1cs-std = { version = "^0.4.0", default-features = false }
ark-relations = { version = "^0.4.0", default-features = false, optional = true }
ark-snark = { version = "^0.4.0", default-features = false }
ark-groth16 = { version = "^0.3.0", features = ["r1cs"] }
ark-groth16 = { version = "^0.3.0" }
ark-bw6-761 = { version = "^0.4.0" }
ark-poly-commit = { version = "^0.4.0" }
ark-poly = {version = "^0.4.0"}
Expand All @@ -56,25 +56,12 @@ name = "libspartan"
path = "src/lib.rs"

[[bin]]
name = "snark"
path = "profiler/snark.rs"

[[bin]]
name = "nizk"
path = "profiler/nizk.rs"

[[bench]]
name = "snark"
harness = false

[[bench]]
name = "nizk"
harness = false
name = "testudo"
path = "profiler/testudo.rs"

[[bench]]
name = "r1cs"
name = "testudo"
harness = false
debug = true

[features]
multicore = ["rayon"]
Expand All @@ -86,7 +73,7 @@ std = ["ark-ff/std", "ark-ec/std", "ark-std/std", "ark-relations/std", "ark-seri

[patch.crates-io]
ark-poly-commit = {git = "https://github.com/cryptonetlab/ark-polycommit", branch="feat/pst_on_g2"}
ark-groth16 = { git = "https://github.com/arkworks-rs/groth16", features = ["r1cs"] }
ark-groth16 = { git = "https://github.com/arkworks-rs/groth16" }
blstrs = { git = "https://github.com/nikkolasg/blstrs", branch = "feat/arkwork" }
ark-ec = { git = "https://github.com/vmx/algebra", branch = "affine-repr-xy-owned" }
ark-ff = { git = "https://github.com/vmx/algebra", branch = "affine-repr-xy-owned" }
Expand Down
148 changes: 0 additions & 148 deletions benches/nizk.rs

This file was deleted.

64 changes: 0 additions & 64 deletions benches/r1cs.rs

This file was deleted.

135 changes: 0 additions & 135 deletions benches/snark.rs

This file was deleted.

Loading