From 6cbe82bbdee725adbdf2ec86ca2f77564f0003f4 Mon Sep 17 00:00:00 2001 From: Pratyush Mishra Date: Sat, 20 Mar 2021 10:50:54 -0700 Subject: [PATCH] Remove `bench-utils` --- Cargo.toml | 4 +--- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5c5e522d..313f74cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 } 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 } digest = "0.8" rayon = { version = "1", optional = true } @@ -62,5 +60,5 @@ debug = true default = [ "std", "parallel" ] std = [ "ark-ff/std", "ark-ec/std", "ark-poly/std", "ark-std/std", "ark-serialize/std" ] 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" ] diff --git a/src/lib.rs b/src/lib.rs index 03ee5f5d..658a8060 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -13,7 +13,7 @@ #[macro_use] extern crate derivative; #[macro_use] -extern crate bench_utils; +extern crate ark_std; use ark_ff::Field; pub use ark_poly::{Polynomial, UVPolynomial};