Remove unused imports
This commit is contained in:
parent
ff20e79aa1
commit
c9086e9850
2 changed files with 1 additions and 6 deletions
|
@ -1,8 +1,6 @@
|
|||
use std::error::Error;
|
||||
use std::fmt::Error as FmtError;
|
||||
use std::clone::Clone;
|
||||
use std::fmt::{Debug, Display, Formatter};
|
||||
use std::fmt;
|
||||
use std::fmt::{Display, Formatter};
|
||||
|
||||
#[derive(Clone, Copy, Debug, PartialEq)]
|
||||
pub enum LinkErrorKind {
|
||||
|
|
|
@ -11,13 +11,11 @@
|
|||
/// This helps us greatly with deduplication of URLs.
|
||||
///
|
||||
|
||||
use std::convert::Into;
|
||||
use std::ops::Deref;
|
||||
use std::ops::DerefMut;
|
||||
use std::collections::BTreeMap;
|
||||
|
||||
use libimagstore::store::Entry;
|
||||
use libimagstore::store::EntryHeader;
|
||||
use libimagstore::store::FileLockEntry;
|
||||
use libimagstore::store::Store;
|
||||
use libimagstore::storeid::StoreId;
|
||||
|
@ -30,7 +28,6 @@ use internal::InternalLinker;
|
|||
use module_path::ModuleEntryPath;
|
||||
|
||||
use toml::Value;
|
||||
use toml::Table;
|
||||
use url::Url;
|
||||
use crypto::sha1::Sha1;
|
||||
use crypto::digest::Digest;
|
||||
|
|
Loading…
Reference in a new issue