Browse Source

bigint: Cleanup unused imports

Josh Stone 8 years ago
parent
commit
4b8c71fbec
2 changed files with 2 additions and 3 deletions
  1. 1 2
      bigint/src/bigint.rs
  2. 1 1
      bigint/src/biguint.rs

+ 1 - 2
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")]

+ 1 - 1
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")]