From 03e01cb3f04658cfcd4b4e698fb2b4b8db1ffa26 Mon Sep 17 00:00:00 2001 From: Thom Wiggers Date: Fri, 27 Jul 2018 12:22:46 +0200 Subject: [PATCH] Fix benchmark --- benches/bigint.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benches/bigint.rs b/benches/bigint.rs index f50a74a9..bba683bc 100644 --- a/benches/bigint.rs +++ b/benches/bigint.rs @@ -10,7 +10,7 @@ extern crate rand; use std::mem::replace; use test::Bencher; use num_bigint::{BigInt, BigUint, RandBigInt}; -use num_traits::{Zero, One, FromPrimitive, Num}; +use num_traits::{Zero, One, FromPrimitive, Num, Pow}; use rand::{SeedableRng, StdRng}; fn get_rng() -> StdRng {