diff --git a/app/Main.hs b/app/Main.hs
deleted file mode 100644
--- a/app/Main.hs
+++ /dev/null
@@ -1,4 +0,0 @@
-module Main where
-
-main :: IO ()
-main = putStrLn ""
diff --git a/haskell-disque.cabal b/haskell-disque.cabal
--- a/haskell-disque.cabal
+++ b/haskell-disque.cabal
@@ -3,7 +3,7 @@
 -- see: https://github.com/sol/hpack
 
 name:                haskell-disque
-version:             0.0.1.0
+version:             0.0.1.1
 synopsis:            Client library for the Disque datastore
 description:         Disque is an ongoing experiment to build a distributed, in-memory, message broker.Its goal is to capture the essence of the "Redis as a jobs queue" use case, which is usually implemented using blocking list operations, and move it into an ad-hoc, self-contained, scalable, and fault tolerant design, with simple to understand properties and guarantees, but still resembling Redis in terms of simplicity, performance, and implementation as a C non-blocking networked server. This library is a Haskell client for the Disque datastore.
 homepage:            https://github.com/ArekCzarnik/haskell-disque#readme
@@ -27,6 +27,7 @@
 library
   hs-source-dirs:
       src
+  ghc-options: -Wall -fwarn-tabs
   exposed-modules:
       Database.Disque
   other-modules:
@@ -36,16 +37,7 @@
     , hedis
     , string-conversions
     , bytestring
-  default-language: Haskell2010
-
-executable haskell-disque-exe
-  hs-source-dirs:
-      app
-  main-is: Main.hs
-  ghc-options: -threaded -rtsopts -with-rtsopts=-N
-  build-depends:
-      base
-    , haskell-disque
+    , transformers
   default-language: Haskell2010
 
 test-suite haskell-disque-test
