diff --git a/htoml-megaparsec.cabal b/htoml-megaparsec.cabal
--- a/htoml-megaparsec.cabal
+++ b/htoml-megaparsec.cabal
@@ -1,16 +1,16 @@
 name:                     htoml-megaparsec
-version:                  1.0.1.11
+version:                  1.0.1.12
 synopsis:                 Parser for TOML files
 description:              TOML is an obvious and minimal format for config files.
                           This package provides a TOML parser
                           built with the Megaparsec.
-homepage:                 https://github.com/vmchale/htoml-megaparsec
-bug-reports:              https://github.com/vmchale/htoml-megaparsec/issues
+homepage:                 https://hub.darcs.net/vmchale/htoml-megaparsec
+bug-reports:              https://hub.darcs.net/vmchale/htoml-megaparsec/issues
 license:                  BSD3
 license-file:             LICENSE
 copyright:                (c) 2013-2016 Cies Breijs, 2017 Vanessa McHale
 author:                   Cies Breijs, Vanessa McHale
-maintainer:               Vanessa McHale <vanessa.mchale@reconfigure.io>
+maintainer:               Vanessa McHale <vamchale@gmail.com>
 category:                 Data, Text, Configuration, Language, TOML
 build-type:               Simple
 cabal-version:            >= 1.18
@@ -26,7 +26,7 @@
 
 source-repository head
   type:                   git
-  location:               https://github.com/cies/htoml.git
+  location:               https://hub.darcs.net/vmchale/htoml-megaparsec
 
 library
   exposed-modules:        Text.Toml
@@ -83,12 +83,6 @@
   type:                   exitcode-stdio-1.0
   default-language:       Haskell2010
   build-depends:          base
-                        , containers
-                        , unordered-containers
-                        , vector
-                        , aeson
-                        , text
-                        , time
-			  -- from here non-lib deps
                         , htoml-megaparsec
                         , criterion
+                        , text
diff --git a/src/Text/Toml/Parser.hs b/src/Text/Toml/Parser.hs
--- a/src/Text/Toml/Parser.hs
+++ b/src/Text/Toml/Parser.hs
@@ -10,7 +10,7 @@
   , module Text.Toml.Types
   ) where
 
-import           Control.Applicative    hiding (many, optional, (<|>))
+import           Control.Applicative    hiding (many, optional, some, (<|>))
 import           Control.Monad
 import           Control.Monad.State    (evalState)
 import qualified Data.HashMap.Lazy      as M
