diff options
| author | Eugen Wissner <belka@caraus.de> | 2024-08-07 19:25:42 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2024-08-07 19:25:42 +0200 |
| commit | 6e32112be4a9fe898ec615b59dabcda8c36005bd (patch) | |
| tree | 4052d972bf29294d7c2811fa1d1f3c9636e6899d | |
| parent | 388af30b5184a79a9798c314e25cdb9e9ece4767 (diff) | |
| download | graphql-6e32112be4a9fe898ec615b59dabcda8c36005bd.tar.gz | |
Require base >=4.15 (GHC 9)
It's already required by some of the dependencies, so it shouldn't be a
problem. Anyway NonEmpty usage is requiring base >=4.9 at least.
| -rw-r--r-- | graphql.cabal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphql.cabal b/graphql.cabal index cf71bf7..defcdce 100644 --- a/graphql.cabal +++ b/graphql.cabal @@ -1,4 +1,4 @@ -cabal-version: 2.4 +cabal-version: 3.0 name: graphql version: 1.3.0.0 @@ -57,7 +57,7 @@ library ghc-options: -Wall build-depends: - base >= 4.7 && < 5, + base >= 4.15 && < 5, conduit ^>= 1.3.4, containers >= 0.6 && < 0.8, exceptions ^>= 0.10.4, |
