diff options
| author | Matthías Páll Gissurarson <mpg@mpg.is> | 2016-03-12 00:59:51 +0100 |
|---|---|---|
| committer | Matthías Páll Gissurarson <mpg@mpg.is> | 2016-03-14 01:01:24 +0100 |
| commit | d1953891029a71115ee572b7b3798072cbaf2ea8 (patch) | |
| tree | c964aade8d6aeaff61f2bb8e6057079e7e5d5913 /graphql.cabal | |
| parent | b74278cd19d900d1397e35b85f7b80d70cd574f2 (diff) | |
| download | graphql-d1953891029a71115ee572b7b3798072cbaf2ea8.tar.gz | |
Added exception handling with Alternative constraint according to spec.
Diffstat (limited to 'graphql.cabal')
| -rw-r--r-- | graphql.cabal | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/graphql.cabal b/graphql.cabal index 18c78fa..4b3cc38 100644 --- a/graphql.cabal +++ b/graphql.cabal @@ -28,10 +28,11 @@ library Data.GraphQL.Execute Data.GraphQL.Schema Data.GraphQL.Parser - build-depends: base >= 4.7 && < 5, - text >= 0.11.3.1, - aeson >= 0.7.0.3, + Data.GraphQL.Error + build-depends: aeson >= 0.7.0.3, attoparsec >= 0.10.4.0, + base >= 4.7 && < 5, + text >= 0.11.3.1, unordered-containers >= 0.2.5.0 test-suite tasty @@ -44,15 +45,15 @@ test-suite tasty Test.StarWars.Data Test.StarWars.Schema Test.StarWars.QueryTests - build-depends: base >= 4.6 && <5, - aeson >= 0.7.0.3, - text >= 0.11.3.1, + build-depends: aeson >= 0.7.0.3, attoparsec >= 0.10.4.0, + base >= 4.6 && <5, + graphql, raw-strings-qq >= 1.1, tasty >= 0.10, tasty-hunit >= 0.9, - unordered-containers >= 0.2.5.0, - graphql + text >= 0.11.3.1, + unordered-containers >= 0.2.5.0 source-repository head type: git |
