2019-06-11 06:13:01 +02:00
|
|
|
name: graphql
|
2020-07-24 21:34:31 +02:00
|
|
|
version: 0.9.0.0
|
2019-06-11 06:13:01 +02:00
|
|
|
synopsis: Haskell GraphQL implementation
|
|
|
|
description:
|
|
|
|
This package provides a rudimentary parser for the
|
2019-07-07 06:31:53 +02:00
|
|
|
<https://graphql.github.io/graphql-spec/June2018/ GraphQL> language.
|
2019-07-06 07:57:18 +02:00
|
|
|
maintainer: belka@caraus.de
|
|
|
|
github: caraus-ecms/graphql
|
2019-07-07 06:31:53 +02:00
|
|
|
category: Language
|
|
|
|
copyright:
|
2020-01-21 23:27:21 +01:00
|
|
|
- (c) 2019-2020 Eugen Wissner
|
2019-07-07 06:31:53 +02:00
|
|
|
- (c) 2015-2017 J. Daniel Navarro
|
2019-06-11 06:13:01 +02:00
|
|
|
author:
|
2019-07-06 07:57:18 +02:00
|
|
|
- Danny Navarro <j@dannynavarro.net>
|
|
|
|
- Matthías Páll Gissurarson <mpg@mpg.is>
|
|
|
|
- Sólrún Halla Einarsdóttir <she@mpg.is>
|
2019-06-11 06:13:01 +02:00
|
|
|
|
|
|
|
extra-source-files:
|
|
|
|
- CHANGELOG.md
|
|
|
|
- README.md
|
|
|
|
- LICENSE
|
|
|
|
- docs/tutorial/tutorial.lhs
|
|
|
|
|
|
|
|
data-files:
|
|
|
|
- tests/data/*.graphql
|
|
|
|
- tests/data/*.min.graphql
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
- aeson
|
|
|
|
- base >= 4.7 && < 5
|
2020-07-14 19:37:56 +02:00
|
|
|
- conduit
|
2019-11-16 11:41:40 +01:00
|
|
|
- containers
|
2020-07-17 07:05:03 +02:00
|
|
|
- exceptions
|
2020-07-19 07:36:06 +02:00
|
|
|
- hspec-expectations
|
2019-06-21 10:44:58 +02:00
|
|
|
- megaparsec
|
2020-01-12 07:19:28 +01:00
|
|
|
- parser-combinators
|
2020-05-21 10:20:59 +02:00
|
|
|
- scientific
|
2019-06-11 06:13:01 +02:00
|
|
|
- text
|
2019-06-28 11:12:28 +02:00
|
|
|
- transformers
|
2019-10-19 10:00:25 +02:00
|
|
|
- unordered-containers
|
2019-06-11 06:13:01 +02:00
|
|
|
|
|
|
|
library:
|
2019-06-30 06:07:32 +02:00
|
|
|
source-dirs: src
|
2019-11-03 10:42:10 +01:00
|
|
|
other-modules:
|
2020-05-27 23:18:35 +02:00
|
|
|
- Language.GraphQL.Execute.Execution
|
2020-07-14 19:37:56 +02:00
|
|
|
- Language.GraphQL.Execute.Subscribe
|
2019-12-21 09:16:41 +01:00
|
|
|
- Language.GraphQL.Execute.Transform
|
2020-06-19 10:53:41 +02:00
|
|
|
- Language.GraphQL.Type.Definition
|
2020-07-06 19:10:34 +02:00
|
|
|
- Language.GraphQL.Type.Internal
|
2020-07-20 21:29:12 +02:00
|
|
|
- Language.GraphQL.Validate.Rules
|
2019-06-11 06:13:01 +02:00
|
|
|
|
|
|
|
tests:
|
|
|
|
tasty:
|
2019-07-10 05:57:35 +02:00
|
|
|
main: Spec.hs
|
2019-06-11 06:13:01 +02:00
|
|
|
source-dirs: tests
|
|
|
|
ghc-options:
|
|
|
|
- -threaded
|
|
|
|
- -rtsopts
|
|
|
|
- -with-rtsopts=-N
|
|
|
|
dependencies:
|
|
|
|
- graphql
|
2019-07-10 05:57:35 +02:00
|
|
|
- hspec
|
2019-09-27 10:50:38 +02:00
|
|
|
- hspec-megaparsec
|
2020-03-29 15:56:07 +02:00
|
|
|
- QuickCheck
|
2019-06-11 06:13:01 +02:00
|
|
|
- raw-strings-qq
|