diff --git a/Crypto/Hash/Conduit.hs b/Crypto/Hash/Conduit.hs
--- a/Crypto/Hash/Conduit.hs
+++ b/Crypto/Hash/Conduit.hs
@@ -26,6 +26,7 @@
 import Data.Conduit.Binary (sourceFile)
 
 import Control.Monad.IO.Class (MonadIO, liftIO)
+import Control.Monad.Trans.Resource (runResourceT)
 
 -- | A 'Sink' that hashes a stream of 'B.ByteString'@s@ and
 -- creates a digest @d@.
diff --git a/cryptohash-conduit.cabal b/cryptohash-conduit.cabal
--- a/cryptohash-conduit.cabal
+++ b/cryptohash-conduit.cabal
@@ -1,5 +1,5 @@
 Name:                cryptohash-conduit
-Version:             0.1.0
+Version:             0.1.1
 Synopsis:            cryptohash conduit
 Description:
   Support all the @cryptohash@ package using conduits from
@@ -21,6 +21,8 @@
   Build-depends:     base >= 4 && < 5
                    , bytestring
                    , conduit
+                   , resourcet
+                   , conduit-extra
                    , cryptohash
                    , transformers
   ghc-options:       -Wall -fwarn-tabs
