diff --git a/om-socket.cabal b/om-socket.cabal
--- a/om-socket.cabal
+++ b/om-socket.cabal
@@ -1,6 +1,6 @@
 cabal-version:       3.0
 name:                om-socket
-version:             1.0.0.0
+version:             1.0.0.1
 synopsis:            Socket utilities.
 description:         Binary ingress server, egress client, and
                      bidirectional binarry client/server
@@ -17,31 +17,23 @@
 
 common warnings
   ghc-options:
+    -Wall
     -Wmissing-deriving-strategies
     -Wmissing-export-lists
     -Wmissing-import-lists
     -Wredundant-constraints
-    -Wall
+    -Wunused-packages
 
 common dependencies
   build-depends:
-    , aeson                >= 2.0.3.0   && < 2.3
     , base                 >= 4.15.1.0  && < 4.20
     , binary               >= 0.8.8.0   && < 0.9
-    , bytestring           >= 0.10.12.1 && < 0.13
-    , containers           >= 0.6.4.1   && < 0.7
     , exceptions           >= 0.10.4    && < 0.11
-    , megaparsec           >= 9.2.2     && < 9.7
     , monad-logger         >= 0.3.37    && < 0.4
-    , network              >= 3.1.2.7   && < 3.2
     , om-fork              >= 0.7.1.9   && < 0.8
     , om-show              >= 0.1.2.6   && < 0.2
-    , stm                  >= 2.5.0.0   && < 2.6
     , streaming            >= 0.2.4.0   && < 0.3
-    , streaming-binary     >= 0.3.0.1   && < 0.4
-    , streaming-bytestring >= 0.3.2     && < 0.4
     , text                 >= 1.2.5.0   && < 2.2
-    , tls                  >= 1.5.8     && < 1.10
     , unliftio-core        >= 0.2.1.0   && < 0.3
 
 library
@@ -52,6 +44,16 @@
   -- other-extensions:    
   hs-source-dirs: src
   default-language: Haskell2010
+  build-depends:
+    , aeson                >= 2.0.3.0   && < 2.3
+    , bytestring           >= 0.10.12.1 && < 0.13
+    , containers           >= 0.6.4.1   && < 0.7
+    , megaparsec           >= 9.2.2     && < 9.7
+    , network              >= 3.1.2.7   && < 3.2
+    , stm                  >= 2.5.0.0   && < 2.6
+    , streaming-binary     >= 0.3.0.1   && < 0.4
+    , streaming-bytestring >= 0.3.2     && < 0.4
+    , tls                  >= 1.5.8     && < 2.1
 
 test-suite test
   import: dependencies, warnings
