summaryrefslogtreecommitdiff
path: root/graphql.cabal
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2024-05-01 14:02:59 +0200
committerEugen Wissner <belka@caraus.de>2024-05-01 14:06:33 +0200
commite071553e7515ab55cabeac96676ee77f12328310 (patch)
tree304266ad15bd0860e7290ec46fd7c66841869a1c /graphql.cabal
parente731c7db07f2eacaecd64ea28426ad87bcef6ca8 (diff)
downloadgraphql-e071553e7515ab55cabeac96676ee77f12328310.tar.gz
Update QuickCheck and containers
Diffstat (limited to 'graphql.cabal')
-rw-r--r--graphql.cabal6
1 files changed, 3 insertions, 3 deletions
diff --git a/graphql.cabal b/graphql.cabal
index aacb8b0..225ff29 100644
--- a/graphql.cabal
+++ b/graphql.cabal
@@ -1,7 +1,7 @@
cabal-version: 2.4
name: graphql
-version: 1.2.0.3
+version: 1.3.0.0
synopsis: Haskell GraphQL implementation
description: Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation.
category: Language
@@ -60,7 +60,7 @@ library
build-depends:
base >= 4.7 && < 5,
conduit ^>= 1.3.4,
- containers ^>= 0.6.2,
+ containers >= 0.6 && < 0.8,
exceptions ^>= 0.10.4,
megaparsec >= 9.0 && < 10,
parser-combinators >= 1.3 && < 2,
@@ -93,7 +93,7 @@ test-suite graphql-test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
- QuickCheck ^>= 2.14.1,
+ QuickCheck >= 2.14 && < 2.16,
base,
conduit,
exceptions,