diff --git a/Cargo.toml b/Cargo.toml
index 75f8be20e06ba75d4b63396fe8cdb9c9fae024f4..228c4f555527470684853bf303c6342fba1d23fb 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.9"
 rayon = { version = "1", optional = true }
@@ -64,5 +62,5 @@ debug = true
 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" ]
 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 0ac91ab99b130e8f5dbd48e16b4c52cae68a6cc1..a454655631da6730d0a7b34d55ffb92543f11f86 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};