-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.yaml
89 lines (79 loc) · 1.86 KB
/
package.yaml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
name: graphql-api
version: 0.3.0
synopsis: GraphQL API
description: |
Implement [GraphQL](http://graphql.org/) servers in Haskell.
Provides a Servant-like type-based API for defining GraphQL schemas and
implementing handlers for those schemas.
See [README.md](https://github.com/haskell-graphql/graphql-api#graphql-api) for more details.
author: Jonathan M. Lange, Tom Hunger
maintainer: Jonathan M. Lange <[email protected]>, Tom Hunger <[email protected]>
license: Apache
license-file: LICENSE.Apache-2.0
github: haskell-graphql/graphql-api
category: Web
stability: unstable
extra-source-files:
- CHANGELOG.rst
# NB the "redundant constraints" warning is a GHC bug: https://ghc.haskell.org/trac/ghc/ticket/11099
ghc-options: -Wall -fno-warn-redundant-constraints
default-extensions:
- NoImplicitPrelude
- OverloadedStrings
- RecordWildCards
- TypeApplications
dependencies:
- base >= 4.9 && < 5
- protolude >= 0.2.1
- exceptions
- transformers
- attoparsec
library:
source-dirs: src
dependencies:
- aeson
- containers
- ghc-prim
- scientific
- QuickCheck
- text
executables:
input-object-example:
main: InputObject.hs
source-dirs: examples
other-modules: []
dependencies:
- aeson
- graphql-api
union-example:
main: UnionExample.hs
source-dirs: examples
other-modules: []
dependencies:
- aeson
- graphql-api
tests:
graphql-api-tests:
main: Main.hs
source-dirs: tests
dependencies:
- aeson
- containers
- graphql-api
- hspec
- QuickCheck
- raw-strings-qq
- directory
graphql-api-doctests:
main: Main.hs
ghc-options: -threaded
source-dirs: tests/doctests
dependencies:
- doctest
benchmarks:
criterion:
main: Main.hs
source-dirs: benchmarks
dependencies:
- criterion
- graphql-api