diff --git a/Network/Wai/Application/Devel.hs b/Network/Wai/Application/Devel.hs
--- a/Network/Wai/Application/Devel.hs
+++ b/Network/Wai/Application/Devel.hs
@@ -16,7 +16,8 @@
     ( MVar, newEmptyMVar, newMVar
     , takeMVar, putMVar, readMVar
     )
-import Network.Wai (Application, responseLBS, status500)
+import Network.Wai (Application, responseLBS)
+import Network.HTTP.Types (status500)
 import Data.ByteString.Lazy.Char8 ()
 import Control.Monad.IO.Class (liftIO)
 
diff --git a/Network/Wai/Handler/DevelServer.hs b/Network/Wai/Handler/DevelServer.hs
--- a/Network/Wai/Handler/DevelServer.hs
+++ b/Network/Wai/Handler/DevelServer.hs
@@ -11,6 +11,7 @@
 
 import Language.Haskell.Interpreter hiding (typeOf)
 import Network.Wai
+import Network.HTTP.Types (status200)
 
 import Data.Text.Lazy (pack)
 import Data.Text.Lazy.Encoding (encodeUtf8)
diff --git a/wai-handler-devel.cabal b/wai-handler-devel.cabal
--- a/wai-handler-devel.cabal
+++ b/wai-handler-devel.cabal
@@ -1,5 +1,5 @@
 Name:                wai-handler-devel
-Version:             0.2.1
+Version:             0.4.0
 Synopsis:            WAI server that automatically reloads code after modification.
 Description:         This handler automatically reloads your source code upon any changes. It works by using the hint package, essentially embedding GHC inside the handler. The handler (both the executable and library) takes three arguments: the port to listen on, the module name containing the application function, and the name of the function.
                      .
@@ -22,9 +22,10 @@
 
 Library
   Build-Depends:     base                  >= 4             && < 5
-                   , wai                   >= 0.3           && < 0.4
-                   , wai-extra             >= 0.3           && < 0.4
-                   , warp                  >= 0.3           && < 0.4
+                   , wai                   >= 0.4           && < 0.5
+                   , wai-extra             >= 0.4           && < 0.5
+                   , http-types            >= 0.6           && < 0.7
+                   , warp                  >= 0.4           && < 0.5
                    , directory             >= 1.0           && < 1.2
                    , network               >= 2.2           && < 2.4
                    , bytestring            >= 0.9           && < 0.10
