Fix some unused import warnings.

This commit is contained in:
Paul Lietar 2016-07-06 01:36:46 +01:00
parent facd6c5881
commit e688914082
2 changed files with 1 additions and 2 deletions

View file

@ -1,4 +1,4 @@
use byteorder::{BigEndian, ByteOrder, ReadBytesExt, WriteBytesExt};
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
use eventual;
use std::collections::HashMap;
use std::io::{Cursor, Read, Write};

View file

@ -3,7 +3,6 @@ use crypto;
use crypto::aes;
use crypto::digest::Digest;
use crypto::hmac::Hmac;
use crypto::mac::Mac;
use crypto::pbkdf2::pbkdf2;
use crypto::sha1::Sha1;
use protobuf::ProtobufEnum;