From ec166a330fe00ed8f518b1079ac315e23b0d1f8d Mon Sep 17 00:00:00 2001 From: Hank Lin <59768545+FullstackGJJ@users.noreply.github.com> Date: Mon, 12 Jul 2021 00:53:41 -0400 Subject: [PATCH] added correct version bounds for dependencies (#41) --- docopt.cabal | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docopt.cabal b/docopt.cabal index eb67c55..3b86ace 100644 --- a/docopt.cabal +++ b/docopt.cabal @@ -44,8 +44,8 @@ library System.Console.Docopt.Public build-depends: base >= 4.9 && < 5.0, - parsec >= 3.1.0, - containers + parsec >= 3.1.14 && < 3.2, + containers >= 0.6.2 && < 0.7 ghc-options: -Wall -fno-warn-unused-binds @@ -57,8 +57,8 @@ library exposed-modules: System.Console.Docopt other-modules: System.Console.Docopt.QQ System.Console.Docopt.QQ.Instances - build-depends: template-haskell, - th-lift + build-depends: template-haskell >= 2.15.0 && < 2.16, + th-lift >= 0.8.2 && < 0.9 test-suite tests type: exitcode-stdio-1.0 @@ -73,8 +73,8 @@ test-suite tests -fno-warn-orphans build-depends: base, - parsec, - containers, + parsec >= 3.1.14 && < 3.2, + containers >= 0.6.2 && < 0.7, docopt, HUnit, split, @@ -82,8 +82,8 @@ test-suite tests aeson, bytestring, text, - template-haskell, - th-lift + template-haskell >= 2.15.0 && < 2.16, + th-lift >= 0.8.2 && < 0.9 other-modules: System.Console.Docopt System.Console.Docopt.ApplicativeParsec