bigint: Cleanup unused imports

This commit is contained in:
Josh Stone 2017-03-06 13:20:30 -08:00
parent 66ce252494
commit 4b8c71fbec
2 changed files with 2 additions and 3 deletions

View File

@ -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")]

View File

@ -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")]