summaryrefslogtreecommitdiff
path: root/graphql.cabal
blob: 55759d109cd11f97039b50b11661d7d5967602f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name:                graphql
version:             0.1
synopsis:            Haskell GraphQL implementation
description:
  For now this package provides the data types for the GraphQL language.
  Further releases will cover more aspects of the GraphQL specification.
homepage:            https://github.com/jdnavarro/graphql-haskell
bug-reports:         https://github.com/jdnavarro/graphql-haskell/issues
license:             BSD3
license-file:        LICENSE
author:              Danny Navarro
maintainer:          j@dannynavarro.net
copyright:           Copyright (C) 2015 J. Daniel Navarro
category:            Web
build-type:          Simple
cabal-version:       >=1.10
tested-with:         GHC == 7.10
extra-source-files:  README.md CHANGELOG.md stack.yaml

library
  exposed-modules:     Data.GraphQL.AST
                       Data.GraphQL.Parser
  build-depends:       base >= 4.7 && < 5,
                       text >=0.11.3.1,
                       attoparsec >=0.10.4.0
  default-language:    Haskell2010
  ghc-options:         -Wall

source-repository head
  type:     git
  location: git://github.com/jdnavarro/graphql-haskell.git