Fix unused imports
diff --git a/src/graph.rs b/src/graph.rs
index 300c81b..0b1567f 100644
--- a/src/graph.rs
+++ b/src/graph.rs
@@ -1,6 +1,5 @@
 //! **Graph\<N, E, Ty\>** is a graph datastructure using an adjacency list representation.
 
-use std::hash::{Hash};
 use std::fmt;
 use std::slice;
 use std::iter;
@@ -21,7 +20,6 @@
 use super::visit::{
     Reversed,
     Dfs,
-    Visitable,
     VisitMap,
 };
 
diff --git a/src/lib.rs b/src/lib.rs
index 8060f19..bbfd0a2 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -7,7 +7,6 @@
 //! It is based on rustc's graph implementation.
 
 use std::cmp::Ordering;
-use std::cell::Cell;
 use std::hash::{self, Hash};
 use std::collections::hash_map::Hasher;
 use std::fmt;
diff --git a/src/visit.rs b/src/visit.rs
index a90cc10..d373a3d 100644
--- a/src/visit.rs
+++ b/src/visit.rs
@@ -7,7 +7,6 @@
     BinaryHeap,
     HashSet,
     HashMap,
-    Bitv,
     BitvSet,
     RingBuf,
 };