diff --git a/bin/He.hs b/bin/He.hs
deleted file mode 100644
--- a/bin/He.hs
+++ /dev/null
@@ -1,21 +0,0 @@
-{-# LANGUAGE RecordWildCards #-}
-
-module Main (main) where
-
-import Control.Exception (SomeException)
-import Control.Monad (void)
-
-import System.Xen (runXenT)
-
-import He.Options (HeCommand(..), HeOptions(..), getOptions)
-import qualified He.Commands.List as HeList
-
-reportError :: SomeException -> IO ()
-reportError = error . show
-
-main :: IO ()
-main = do
-    HeOptions { .. } <- getOptions
-    result <- runXenT $ case heOptionCommand of
-        HeCommandList -> void $ HeList.run
-    either reportError (const $ return ()) result
diff --git a/hen.cabal b/hen.cabal
--- a/hen.cabal
+++ b/hen.cabal
@@ -1,5 +1,5 @@
 Name:               hen
-Version:            0.1.0
+Version:            0.1.0.1
 Synopsis:           Haskell bindings to Xen hypervisor interface
 Description:        Haskell bindings to Xen hypervisor interface
 License:            MIT
@@ -35,7 +35,7 @@
                         System.Xen.Errors
                         System.Xen.Mid
                         System.Xen.Low
---    Extra-libraries:    xenctrl
+    Extra-libraries:    xenctrl
 
 Test-suite hen-tests
     Main-is:          Tests.hs
@@ -54,24 +54,6 @@
                       , test-framework             == 0.8.*
                       , test-framework-quickcheck2 == 0.3.*
                       , QuickCheck                 == 2.5.*
-
-Executable he
-    Main-is:          He.hs
-    Hs-source-dirs:   src, bin
-    Ghc-options:      -Wall -fno-warn-orphans
-    Default-language: Haskell2010
-
-    Build-depends:      base                      == 4.6.* || == 4.5.*
-                      , transformers              == 0.3.*
-                      , mtl                       == 2.1.* || == 2.0.*
-                      , exceptions                == 0.1.*
-                      , uuid                      == 1.2.*
-                      , bitset                    >= 1.4.0 ||  < 1.4.2
-                      , hen
-
-                      , optparse-applicative      == 0.5.*
-                      , boxes                     == 0.1.*
-
 
 Source-repository head
     Type:     git
