From 4b8c71fbec13c21dfd2d8cadb63f45c7c1646a2c Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Mon, 6 Mar 2017 13:20:30 -0800 Subject: [PATCH] bigint: Cleanup unused imports --- bigint/src/bigint.rs | 3 +-- bigint/src/biguint.rs | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/bigint/src/bigint.rs b/bigint/src/bigint.rs index 7a9b02d..32a4441 100644 --- a/bigint/src/bigint.rs +++ b/bigint/src/bigint.rs @@ -3,8 +3,7 @@ use std::ops::{Add, Div, Mul, Neg, Rem, Shl, Shr, Sub}; use std::str::{self, FromStr}; use std::fmt; use std::cmp::Ordering::{self, Less, Greater, Equal}; -use std::{f32, f64}; -use std::{u8, i64, u64}; +use std::{i64, u64}; use std::ascii::AsciiExt; #[cfg(feature = "serde")] diff --git a/bigint/src/biguint.rs b/bigint/src/biguint.rs index 5248115..fe6303e 100644 --- a/bigint/src/biguint.rs +++ b/bigint/src/biguint.rs @@ -7,7 +7,7 @@ use std::fmt; use std::cmp; use std::cmp::Ordering::{self, Less, Greater, Equal}; use std::{f32, f64}; -use std::{u8, i64, u64}; +use std::{u8, u64}; use std::ascii::AsciiExt; #[cfg(feature = "serde")]