1
Fork 0

Cleanup imports

This commit is contained in:
Taiki Endo 2019-02-09 17:13:39 +09:00
parent 360e65db7a
commit 06b63046b2
3 changed files with 2 additions and 3 deletions

View file

@ -145,7 +145,7 @@ impl FromHex for str {
#[cfg(test)] #[cfg(test)]
mod tests { mod tests {
extern crate test; extern crate test;
use self::test::Bencher; use test::Bencher;
use crate::hex::{FromHex, ToHex}; use crate::hex::{FromHex, ToHex};
#[test] #[test]

View file

@ -199,7 +199,6 @@ use std::ops::Index;
use std::str::FromStr; use std::str::FromStr;
use std::string; use std::string;
use std::{char, f64, fmt, str}; use std::{char, f64, fmt, str};
use std;
use crate::Encodable; use crate::Encodable;

View file

@ -1,6 +1,6 @@
use crate::leb128::{self, read_signed_leb128, write_signed_leb128}; use crate::leb128::{self, read_signed_leb128, write_signed_leb128};
use std::borrow::Cow;
use crate::serialize; use crate::serialize;
use std::borrow::Cow;
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
// Encoder // Encoder