Skip to content
Snippets Groups Projects
Commit 771a5671 authored by Pratyush Mishra's avatar Pratyush Mishra
Browse files

Remove `bench-utils`

parent 492019c6
No related branches found
No related tags found
No related merge requests found
...@@ -32,8 +32,6 @@ ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std", default-featur ...@@ -32,8 +32,6 @@ ark-r1cs-std = { git = "https://github.com/arkworks-rs/r1cs-std", default-featur
ark-nonnative-field = { git = "https://github.com/arkworks-rs/nonnative", default-features = false, optional = true } ark-nonnative-field = { git = "https://github.com/arkworks-rs/nonnative", default-features = false, optional = true }
hashbrown = { version = "0.9", optional = true } hashbrown = { version = "0.9", optional = true }
bench-utils = { git = "https://github.com/arkworks-rs/utils", default-features = false }
rand_core = { version = "0.5", default-features = false } rand_core = { version = "0.5", default-features = false }
digest = "0.9" digest = "0.9"
rayon = { version = "1", optional = true } rayon = { version = "1", optional = true }
...@@ -64,5 +62,5 @@ debug = true ...@@ -64,5 +62,5 @@ debug = true
default = [ "std", "parallel" ] default = [ "std", "parallel" ]
std = [ "ark-ff/std", "ark-ec/std", "ark-nonnative-field/std", "ark-poly/std", "ark-std/std", "ark-relations/std", "ark-serialize/std" ] std = [ "ark-ff/std", "ark-ec/std", "ark-nonnative-field/std", "ark-poly/std", "ark-std/std", "ark-relations/std", "ark-serialize/std" ]
r1cs = [ "ark-relations", "ark-r1cs-std", "ark-nonnative-field", "hashbrown" ] r1cs = [ "ark-relations", "ark-r1cs-std", "ark-nonnative-field", "hashbrown" ]
print-trace = [ "bench-utils/print-trace" ] print-trace = [ "ark-std/print-trace" ]
parallel = [ "std", "ark-ff/parallel", "ark-ec/parallel", "ark-poly/parallel", "ark-std/parallel", "rayon" ] parallel = [ "std", "ark-ff/parallel", "ark-ec/parallel", "ark-poly/parallel", "ark-std/parallel", "rayon" ]
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
#[macro_use] #[macro_use]
extern crate derivative; extern crate derivative;
#[macro_use] #[macro_use]
extern crate bench_utils; extern crate ark_std;
use ark_ff::Field; use ark_ff::Field;
pub use ark_poly::{Polynomial, UVPolynomial}; pub use ark_poly::{Polynomial, UVPolynomial};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment