diff options
| author | Danny Navarro <j@dannynavarro.net> | 2015-09-13 13:51:37 +0200 |
|---|---|---|
| committer | Danny Navarro <j@dannynavarro.net> | 2015-09-13 13:55:15 +0200 |
| commit | 0e67fdc21cc686aa0cb27f87fc36d769310f1484 (patch) | |
| tree | a0cf83701346acb2121b55c19ba9f75db97f9232 /graphql.cabal | |
| parent | 44a2ff4765f6cb9bd317a237b9125d3a9e0c796f (diff) | |
| download | graphql-0e67fdc21cc686aa0cb27f87fc36d769310f1484.tar.gz | |
Add GraphQL parser
WIP: This parser just type checks, it hasn't even been tested manually.
Check new tasks in the TODO file and the TODO comments in the code for
more gotchas.
Diffstat (limited to 'graphql.cabal')
| -rw-r--r-- | graphql.cabal | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/graphql.cabal b/graphql.cabal index 2319318..98914ed 100644 --- a/graphql.cabal +++ b/graphql.cabal @@ -18,8 +18,10 @@ cabal-version: >=1.10 library exposed-modules: Data.GraphQL.AST + Data.GraphQL.Parser build-depends: base >= 4.7 && < 5, - text >=0.11.3.1 + text >=0.11.3.1, + attoparsec >=0.10.4.0 default-language: Haskell2010 source-repository head |
