summaryrefslogtreecommitdiff
path: root/graphql.cabal
diff options
context:
space:
mode:
authorDanny Navarro <j@dannynavarro.net>2015-09-21 18:26:22 +0200
committerDanny Navarro <j@dannynavarro.net>2015-09-21 18:26:22 +0200
commite74ee640a8e3db451c387bec276f3e0067524412 (patch)
treeb164f465d1138d0fcac0fef74bad4338b1992750 /graphql.cabal
parent3d97b3e2ff7cc6d5126c8c6c8b66eed3c1fe010b (diff)
downloadgraphql-e74ee640a8e3db451c387bec276f3e0067524412.tar.gz
Initial implementation of GraphQL pretty printer
This just typechecks. It needs to be cleaned and tested. Tests have been deactivated.
Diffstat (limited to 'graphql.cabal')
-rw-r--r--graphql.cabal29
1 files changed, 15 insertions, 14 deletions
diff --git a/graphql.cabal b/graphql.cabal
index 18684b1..7b47bd9 100644
--- a/graphql.cabal
+++ b/graphql.cabal
@@ -24,24 +24,25 @@ library
ghc-options: -Wall
exposed-modules: Data.GraphQL.AST
Data.GraphQL.Parser
+ Data.GraphQL.Printer
build-depends: base >= 4.7 && < 5,
text >=0.11.3.1,
attoparsec >=0.10.4.0
-test-suite golden
- default-language: Haskell2010
- type: exitcode-stdio-1.0
- hs-source-dirs: tests
- main-is: golden.hs
- ghc-options: -Wall
- other-modules: Paths_graphql
- build-depends: base >= 4.6 && <5,
- bytestring,
- text,
- attoparsec,
- tasty >=0.10,
- tasty-golden,
- graphql
+-- test-suite golden
+-- default-language: Haskell2010
+-- type: exitcode-stdio-1.0
+-- hs-source-dirs: tests
+-- main-is: golden.hs
+-- ghc-options: -Wall
+-- other-modules: Paths_graphql
+-- build-depends: base >= 4.6 && <5,
+-- bytestring,
+-- text,
+-- attoparsec,
+-- tasty >=0.10,
+-- tasty-golden,
+-- graphql
source-repository head
type: git