From f62f111a31a578317828697532e3a29b04f5ba9d Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Wed, 16 Aug 2023 14:56:29 -0400
Subject: [PATCH] bounds on dependencies

---
 gbs-downloader.cabal | 144 +++++++++++++++++++++----------------------
 1 file changed, 72 insertions(+), 72 deletions(-)

diff --git a/gbs-downloader.cabal b/gbs-downloader.cabal
index 4c31e74..c6d41e7 100644
--- a/gbs-downloader.cabal
+++ b/gbs-downloader.cabal
@@ -96,29 +96,29 @@ library
 
   -- Other library packages from which modules are imported.
   build-depends:
-    , aeson
-    , async
-    , base
-    , base32
-    , base64-bytestring
-    , binary
-    , bytestring
-    , connection
-    , containers
-    , data-default-class
-    , exceptions
-    , http-client
-    , http-client-tls
-    , http-types
-    , network-uri
-    , servant-client
-    , servant-client-core
-    , tahoe-chk
+    , aeson                    >=1.4.7    && <2.2
+    , async                    >=2.2.2    && <2.3
+    , base                     >=4.7      && <5
+    , base32                   >=0.2.1    && <0.3
+    , base64-bytestring        >=1.0.0.3  && <1.3
+    , binary                   >=0.8.6    && <0.9
+    , bytestring               >=0.10.8.2 && <0.11
+    , connection               >=0.3.1    && <0.4
+    , containers               >=0.6.0.1  && <0.7
+    , data-default-class       >=0.1.2    && <0.2
+    , exceptions               >=0.10.4   && <0.11
+    , http-client              >=0.6.4.1  && <0.8
+    , http-client-tls          >=0.3.5.3  && <0.4
+    , http-types               >=0.12.3   && <0.13
+    , network-uri              >=2.6.3    && <2.7
+    , servant-client           >=0.16.0.1 && <0.21
+    , servant-client-core      >=0.16     && <0.21
+    , tahoe-chk                >=0.1      && <0.2
     , tahoe-directory
-    , tahoe-great-black-swamp  >=0.3 && <0.4
-    , tahoe-ssk                >=0.2 && <0.3
-    , text
-    , yaml
+    , tahoe-great-black-swamp  >=0.3      && <0.4
+    , tahoe-ssk                >=0.2      && <0.3
+    , text                     >=1.2.3.1  && <1.3
+    , yaml                     >=0.11.5.0 && <0.11.9.0 || >=0.11.9.0.0 && <0.12
 
   -- Directories containing source files.
   hs-source-dirs:   src
@@ -143,15 +143,15 @@ executable download-chk
 
   -- Other library packages from which modules are imported.
   build-depends:
-    , aeson
-    , base
-    , bytestring
-    , containers
+    , aeson           >=1.4.7    && <2.2
+    , base            >=4.7      && <5
+    , bytestring      >=0.10.8.2 && <0.11
+    , containers      >=0.6.0.1  && <0.7
     , gbs-downloader
-    , megaparsec
-    , tahoe-chk
-    , text
-    , yaml
+    , megaparsec      >=8.0      && <9.3
+    , tahoe-chk       >=0.1      && <0.2
+    , text            >=1.2.3.1  && <1.3
+    , yaml            >=0.11.5.0 && <0.11.9.0 || >=0.11.9.0.0 && <0.12
 
   -- Directories containing source files.
   hs-source-dirs:   app
@@ -166,15 +166,15 @@ executable download-sdmf
 
   main-is:          Main.hs
   build-depends:
-    , aeson
-    , base
-    , bytestring
-    , containers
+    , aeson           >=1.4.7    && <2.2
+    , base            >=4.7      && <5
+    , bytestring      >=0.10.8.2 && <0.11
+    , containers      >=0.6.0.1  && <0.7
     , gbs-downloader
-    , megaparsec
-    , tahoe-ssk       >=0.2 && <0.3
-    , text
-    , yaml
+    , megaparsec      >=8.0      && <9.3
+    , tahoe-ssk       >=0.2      && <0.3
+    , text            >=1.2.3.1  && <1.3
+    , yaml            >=0.11.5.0 && <0.11.9.0 || >=0.11.9.0.0 && <0.12
 
   hs-source-dirs:   download-sdmf
   default-language: Haskell2010
@@ -186,17 +186,17 @@ executable list-dircap
 
   main-is:          Main.hs
   build-depends:
-    , aeson
-    , base
-    , bytestring
-    , containers
+    , aeson            >=1.4.7    && <2.2
+    , base             >=4.7      && <5
+    , bytestring       >=0.10.8.2 && <0.11
+    , containers       >=0.6.0.1  && <0.7
     , gbs-downloader
-    , megaparsec
-    , tahoe-chk
-    , tahoe-directory
-    , tahoe-ssk        >=0.2 && <0.3
-    , text
-    , yaml
+    , megaparsec       >=8.0      && <9.3
+    , tahoe-chk        >=0.1      && <0.2
+    , tahoe-directory  >=0.1      && <0.2
+    , tahoe-ssk        >=0.2      && <0.3
+    , text             >=1.2.3.1  && <1.3
+    , yaml             >=0.11.5.0 && <0.11.9.0 || >=0.11.9.0.0 && <0.12
 
   hs-source-dirs:   list-dircap
   default-language: Haskell2010
@@ -225,28 +225,28 @@ test-suite gbs-downloader-test
 
   -- Test dependencies.
   build-depends:
-    , asn1-encoding
-    , asn1-types
-    , base
-    , base32
-    , binary
-    , bytestring
-    , containers
-    , crypto-api
-    , cryptonite
-    , data-default-class
+    , asn1-encoding        >=0.9.6    && <0.10
+    , asn1-types           >=0.3.4    && <0.4
+    , base                 >=4.7      && <5
+    , base32               >=0.2.1    && <0.3
+    , binary               >=0.8.6    && <0.9
+    , bytestring           >=0.10.8.2 && <0.11
+    , containers           >=0.6.0.1  && <0.7
+    , crypto-api           >=0.13.3   && <0.14
+    , cryptonite           >=0.27     && <0.30
+    , data-default-class   >=0.1.2    && <0.2
     , gbs-downloader
-    , hedgehog
-    , http-client
-    , http-types
-    , memory
-    , servant-client
-    , servant-client-core
-    , tahoe-chk
-    , tahoe-ssk            >=0.2 && <0.3
-    , tasty
-    , tasty-hedgehog
-    , tasty-hunit
-    , text
-    , x509
-    , yaml
+    , hedgehog             >=1.0.3    && <1.1
+    , http-client          >=0.6.4.1  && <0.8
+    , http-types           >=0.12.3   && <0.13
+    , memory               >=0.15     && <0.17
+    , servant-client       >=0.16.0.1 && <0.21
+    , servant-client-core  >=0.16     && <0.21
+    , tahoe-chk            >=0.1      && <0.2
+    , tahoe-ssk            >=0.2      && <0.3
+    , tasty                >=1.2.3    && <1.5
+    , tasty-hedgehog       >=1.0.0.2  && <1.2
+    , tasty-hunit          >=0.10.0.2 && <0.11
+    , text                 >=1.2.3.1  && <1.3
+    , x509                 >=1.7.5    && <1.8
+    , yaml                 >=0.11.5.0 && <0.11.9.0 || >=0.11.9.0.0 && <0.12
-- 
GitLab