diff --git a/pregame.cabal b/pregame.cabal
--- a/pregame.cabal
+++ b/pregame.cabal
@@ -1,5 +1,5 @@
 name: pregame
-version: 0.1.4.2
+version: 0.1.4.3
 synopsis: Prelude counterpart
 description: Excessive Prelude styled imports.
 homepage: https://github.com/jxv/pregame
@@ -26,6 +26,7 @@
     base >=4.7 && <4.8,
     bytestring,
     containers,
+    cmdargs,
     data-default,
     mtl,
     lens,
@@ -35,7 +36,6 @@
     transformers,
     text,
     tuple,
-    vector,
-    cmdtheline
+    vector
   hs-source-dirs: src
   default-language: Haskell2010
diff --git a/src/Pregame.hs b/src/Pregame.hs
--- a/src/Pregame.hs
+++ b/src/Pregame.hs
@@ -31,7 +31,7 @@
     , module System.IO.Error 
     , module Safe 
     , module Safe.Exact 
-    , module System.Console.CmdTheLine
+    , module System.Console.CmdArgs
     , Cont, ContT
     --
     , Error, ErrorT
@@ -93,7 +93,7 @@
 import System.IO.Error 
 import Safe hiding (at)
 import Safe.Exact
-import System.Console.CmdTheLine hiding (enum, lastOf)
+import System.Console.CmdArgs hiding (Default(..), enum, (+=))
 
 import Control.Monad.Trans.Cont (Cont, ContT)
 import Control.Monad.Trans.Error (Error, ErrorT)
