Remove unused imports

This commit is contained in:
Matthias Beyer 2016-04-16 22:03:42 +02:00
parent ff20e79aa1
commit c9086e9850
2 changed files with 1 additions and 6 deletions

View File

@ -1,8 +1,6 @@
use std::error::Error; use std::error::Error;
use std::fmt::Error as FmtError; use std::fmt::Error as FmtError;
use std::clone::Clone; use std::fmt::{Display, Formatter};
use std::fmt::{Debug, Display, Formatter};
use std::fmt;
#[derive(Clone, Copy, Debug, PartialEq)] #[derive(Clone, Copy, Debug, PartialEq)]
pub enum LinkErrorKind { pub enum LinkErrorKind {

View File

@ -11,13 +11,11 @@
/// This helps us greatly with deduplication of URLs. /// This helps us greatly with deduplication of URLs.
/// ///
use std::convert::Into;
use std::ops::Deref; use std::ops::Deref;
use std::ops::DerefMut; use std::ops::DerefMut;
use std::collections::BTreeMap; use std::collections::BTreeMap;
use libimagstore::store::Entry; use libimagstore::store::Entry;
use libimagstore::store::EntryHeader;
use libimagstore::store::FileLockEntry; use libimagstore::store::FileLockEntry;
use libimagstore::store::Store; use libimagstore::store::Store;
use libimagstore::storeid::StoreId; use libimagstore::storeid::StoreId;
@ -30,7 +28,6 @@ use internal::InternalLinker;
use module_path::ModuleEntryPath; use module_path::ModuleEntryPath;
use toml::Value; use toml::Value;
use toml::Table;
use url::Url; use url::Url;
use crypto::sha1::Sha1; use crypto::sha1::Sha1;
use crypto::digest::Digest; use crypto::digest::Digest;