diff --git a/Web/Routes/Wai.hs b/Web/Routes/Wai.hs
--- a/Web/Routes/Wai.hs
+++ b/Web/Routes/Wai.hs
@@ -5,7 +5,7 @@
 import Data.Text           (Text)
 import qualified Data.Text as Text
 import qualified Data.Text.Encoding as Text
-import Data.Enumerator     (Iteratee)
+import Control.Monad.Trans.Resource (ResourceT)
 import Network.Wai         ( Application, Request, Response, rawPathInfo
                            , responseLBS)
 import Network.HTTP.Types  (status404)
@@ -57,7 +57,7 @@
 handleWaiRouteT_ :: (url -> [(Text, Maybe Text)] -> Text) -- ^ function to convert a 'url' + params into path info + query string
                  -> (S.ByteString -> Either String url)         -- ^ function to parse path info into 'url'
                  -> S.ByteString                                -- ^ app root
-                 -> (url -> Request -> RouteT url (Iteratee S.ByteString IO) Response) -- ^ routing function
+                 -> (url -> Request -> RouteT url (ResourceT IO) Response) -- ^ routing function
                  -> Application
 handleWaiRouteT_  toPathInfo fromPathInfo approot handler =
    handleWai_ toPathInfo fromPathInfo approot (\toPathInfo' url request -> unRouteT (handler url request) toPathInfo')
@@ -66,7 +66,7 @@
 -- | convert a 'RouteT' based routing function into an 'Application' using 'PathInfo' to do the url conversion
 handleWaiRouteT :: (PathInfo url) => 
                    S.ByteString  -- ^ app root
-                -> (url -> Request -> RouteT url (Iteratee S.ByteString IO) Response) -- ^ routing function
+                -> (url -> Request -> RouteT url (ResourceT IO) Response) -- ^ routing function
                 -> Application
 handleWaiRouteT approot handler = handleWaiRouteT_ toPathInfoParams fromPathInfo approot handler
 
diff --git a/web-routes-wai.cabal b/web-routes-wai.cabal
--- a/web-routes-wai.cabal
+++ b/web-routes-wai.cabal
@@ -1,5 +1,5 @@
 Name:             web-routes-wai
-Version:          0.21.0
+Version:          0.22.1
 License:          BSD3
 License-File:     LICENSE
 Author:           jeremy@seereason.com
@@ -14,11 +14,11 @@
 Library
         Build-Depends:    base        >= 4 && < 5,
                           bytestring  == 0.9.*,
-                          enumerator  == 0.4.*,
+                          conduit     == 0.2.*,
                           http-types  == 0.6.*,
                           text        == 0.11.*,
-                          wai         == 0.4.*,
-                          web-routes  == 0.26.*
+                          wai         == 1.1.*,
+                          web-routes  == 0.27.*
         Exposed-Modules:  Web.Routes.Wai
 
 source-repository head
