diff --git a/HttpTestExec.hs b/HttpTestExec.hs
deleted file mode 100644
--- a/HttpTestExec.hs
+++ /dev/null
@@ -1,22 +0,0 @@
-import System.Environment
-import qualified Network.Wreq 
-import qualified Network.Wreq
-import Control.Lens
-import Data.Aeson.Lens
-import Control.Monad
-import Network.URI
-main = do
-   args <- getArgs
-   mapM_ dispatch $ filter notOption args
-
-dispatch file = case parseURI file of 
-                  Nothing -> runFile file 
-                  Just _ -> runHttp file
-
-
-
-
-isOption ('-':_) = True
-isOption _ = False
-
-notOption = not . isOption
diff --git a/http-test.cabal b/http-test.cabal
--- a/http-test.cabal
+++ b/http-test.cabal
@@ -1,5 +1,5 @@
 Name:                http-test
-Version:             0.2.0.2
+Version:             0.2.0.3
 synopsis:            Test framework for HTTP APIs
 Description:         A simple framework for making assertions about the 
                      responses of HTTP servers.
@@ -48,9 +48,3 @@
   main-is: test.hs
   Build-depends: base                          >= 4          && < 5
                 , http-test
-
-executable    http-test
-  main-is: HttpTestExec.hs
-  Build-depends: base                          >= 4          && < 5
-                , http-test
-                , network
