Loose bounds for compatibility with major versions

This commit is contained in:
Eugen Wissner 2021-12-25 07:42:10 +01:00
parent 116aa1f6bb
commit f20cd02048
Signed by: belka
GPG Key ID: A27FDC1E8EE902C0

View File

@ -22,7 +22,8 @@ extra-source-files:
README.md README.md
tested-with: tested-with:
GHC == 8.10.7, GHC == 8.10.7,
GHC == 9.0.1 GHC == 9.0.1,
GHC == 9.2.1
source-repository head source-repository head
type: git type: git
@ -65,20 +66,20 @@ library
build-depends: build-depends:
base >= 4.7 && < 5, base >= 4.7 && < 5,
conduit >= 1.3.4 && < 1.4, conduit ^>= 1.3.4,
containers >= 0.6.2 && < 0.7, containers ^>= 0.6.2,
exceptions >= 0.10.4 && < 0.11, exceptions ^>= 0.10.4,
hspec-expectations >= 0.8.2 && < 0.9, megaparsec >= 9.0 && < 10,
megaparsec >= 9.0.1 && < 9.1, parser-combinators >= 1.3 && < 2,
parser-combinators >= 1.3.0 && < 1.4, template-haskell >= 2.16 && < 3,
template-haskell >= 2.16 && < 2.18, text ^>= 1.2.4,
text >= 1.2.4 && < 1.3, transformers ^>= 0.5.6,
transformers >= 0.5.6 && < 0.6, unordered-containers ^>= 0.2.14,
unordered-containers >= 0.2.14 && < 0.3, vector ^>= 0.12.3
vector >= 0.12.3 && < 0.13
if flag(Json) if flag(Json)
build-depends: build-depends:
aeson >= 1.5.6 && < 1.6, aeson >= 1.5.6 && < 1.6,
hspec-expectations >= 0.8.2 && < 0.9,
scientific >= 0.3.7 && < 0.4 scientific >= 0.3.7 && < 0.4
cpp-options: -DWITH_JSON cpp-options: -DWITH_JSON
@ -103,13 +104,13 @@ test-suite graphql-test
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends: build-depends:
QuickCheck >= 2.14.1 && < 2.15, QuickCheck ^>= 2.14.1,
base >= 4.8 && < 5, base,
conduit, conduit,
exceptions, exceptions,
graphql, graphql,
hspec >= 2.9.1 && < 3, hspec ^>= 2.9.1,
hspec-megaparsec >= 2.2.0 && < 2.3, hspec-megaparsec ^>= 2.2.0,
megaparsec, megaparsec,
text, text,
unordered-containers unordered-containers