graphql/package.yaml

69 lines
1.4 KiB
YAML
Raw Normal View History

name: graphql
2021-02-07 08:10:46 +01:00
version: 0.11.1.0
synopsis: Haskell GraphQL implementation
description:
Haskell <https://spec.graphql.org/June2018/ GraphQL> implementation.
maintainer: belka@caraus.de
git: git://caraus.tech/pub/graphql.git
homepage: https://www.caraus.tech/projects/pub-graphql
bug-reports: https://www.caraus.tech/projects/pub-graphql/issues
category: Language
license: MPL-2.0 AND BSD-3-Clause
copyright:
2021-02-07 08:10:46 +01:00
- (c) 2019-2021 Eugen Wissner
- (c) 2015-2017 J. Daniel Navarro
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>
license-file:
- LICENSE
- LICENSE.MPL
extra-source-files:
- CHANGELOG.md
- README.md
dependencies:
- aeson
- base >= 4.7 && < 5
- conduit
- containers
- exceptions
- hspec-expectations
2019-06-21 10:44:58 +02:00
- megaparsec
- parser-combinators
2020-05-21 10:20:59 +02:00
- scientific
- text
2019-06-28 11:12:28 +02:00
- transformers
2019-10-19 10:00:25 +02:00
- unordered-containers
2021-02-13 06:56:10 +01:00
- vector
library:
2019-06-30 06:07:32 +02:00
source-dirs: src
other-modules:
- Language.GraphQL.Execute.Execution
- Language.GraphQL.Execute.Subscribe
- 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
tests:
graphql-test:
2019-07-10 05:57:35 +02:00
main: Spec.hs
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
- QuickCheck
- raw-strings-qq
2020-11-07 08:06:15 +01:00
generated-other-modules:
- Paths_graphql