diff --git a/haskell-postal.cabal b/haskell-postal.cabal
--- a/haskell-postal.cabal
+++ b/haskell-postal.cabal
@@ -1,5 +1,5 @@
 name:                haskell-postal
-version:             0.1.0.0
+version:             0.2.0.0
 synopsis:            Haskell binding for the libpostal library
 description:         Provides an interface for the libpostal NLP library
 homepage:            https://github.com/netom/haskell-postal#readme
@@ -15,16 +15,16 @@
 
 library
   hs-source-dirs:      src
-  exposed-modules:     NLP.Postal
+  exposed-modules:
+      NLP.Postal
   default-language:    Haskell2010
   pkgconfig-depends:   libpostal
   ghc-options:         -Wall -fPIC
   build-depends:
       base >= 4.7 && < 5
-    , containers >= 0.5.11 && < 0.6
-    , bytestring >= 0.10.8 && < 0.11
-    , text >= 1.2.3 && < 1.3
-    , inline-c >= 0.6.1 && < 0.7
+    , bytestring >= 0.10 && < 0.11
+    , text >= 1.2 && < 1.3
+    , inline-c >= 0.6 && < 0.7
 
 executable haskell-postal
   hs-source-dirs:      src
@@ -34,10 +34,9 @@
   ghc-options:         -Wall
   build-depends:
       base >= 4.7 && < 5
-    , containers
-    , bytestring
-    , text
-    , inline-c
+    , bytestring >= 0.10 && < 0.11
+    , text >= 1.2 && < 1.3
+    , inline-c >= 0.6 && < 0.7
   other-modules:
       NLP.Postal
 
