Skip to content

Commit

Permalink
Remove bench-utils (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pratyush committed Mar 21, 2021
1 parent 681c0f1 commit f905370
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Breaking changes
- #4 Change groth16's logic to implement the `SNARK` trait.
- Minimum version on crates from `arkworks-rs/algebra` and `arkworks-rs/curves` is now `v0.2.0`
- #24 Switch from `bench-utils` to `ark_std::perf_trace`

### Features
- #5 Add R1CS constraints for the groth16 verifier.
Expand All @@ -20,4 +21,4 @@

## v0.1.0

_Initial release_
_Initial release_
3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ ark-ec = { git = "https://github.com/arkworks-rs/algebra", default-features = fa
ark-serialize = { git = "https://github.com/arkworks-rs/algebra", default-features = false, features = [ "derive" ] }
ark-poly = { git = "https://github.com/arkworks-rs/algebra", default-features = false }
ark-std = { git = "https://github.com/arkworks-rs/utils", default-features = false }
bench-utils = { git = "https://github.com/arkworks-rs/utils" }
ark-relations = { git = "https://github.com/arkworks-rs/snark", default-features = false }
ark-crypto-primitives = { git = "https://github.com/arkworks-rs/crypto-primitives.git", branch = "main", default-features = false }
ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std", default-features = false, optional = true }
Expand Down Expand Up @@ -53,7 +52,7 @@ default = ["parallel"]
std = ["ark-ff/std", "ark-ec/std", "ark-poly/std", "ark-relations/std", "ark-crypto-primitives/std", "ark-std/std" ]
parallel = ["std", "ark-ff/parallel", "ark-poly/parallel", "ark-ec/parallel", "ark-crypto-primitives/parallel", "ark-std/parallel", "rayon"]
r1cs = [ "ark-crypto-primitives/r1cs", "ark-r1cs-std", "tracing", "derivative" ]
print-trace = [ "bench-utils/print-trace" ]
print-trace = [ "ark-std/print-trace" ]

[[example]]
name = "groth16"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#![forbid(unsafe_code)]

#[macro_use]
extern crate bench_utils;
extern crate ark_std;

#[cfg(feature = "r1cs")]
#[macro_use]
Expand Down

0 comments on commit f905370

Please sign in to comment.