diff --git a/data-fix.cabal b/data-fix.cabal
--- a/data-fix.cabal
+++ b/data-fix.cabal
@@ -1,5 +1,5 @@
 Name:            data-fix
-Version:         0.2.0
+Version:         0.2.1
 Cabal-Version:   >= 1.10
 License:         BSD3
 License-file:    LICENSE
diff --git a/src/Data/Fix.hs b/src/Data/Fix.hs
--- a/src/Data/Fix.hs
+++ b/src/Data/Fix.hs
@@ -55,10 +55,8 @@
 where
 
 import GHC.Generics
-import Control.Applicative
 import Data.Data
 import Data.Function (on)
-import Data.Traversable
 
 -- | A fix-point type.
 newtype Fix f = Fix { unFix :: f (Fix f) } deriving (Generic, Typeable)
