graphql/graphql.cabal

120 lines
3.2 KiB
Plaintext
Raw Normal View History

2020-07-03 07:00:37 +02:00
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
2020-08-29 12:12:04 +02:00
-- hash: 3ef060c57424074b84204bae61ee0a63e3470a7a060c45a977ff2bcbe4df8775
2020-07-03 07:00:37 +02:00
name: graphql
2020-08-29 12:12:04 +02:00
version: 0.10.0.0
2020-07-03 07:00:37 +02:00
synopsis: Haskell GraphQL implementation
description: This package provides a rudimentary parser for the <https://graphql.github.io/graphql-spec/June2018/ GraphQL> language.
category: Language
homepage: https://github.com/caraus-ecms/graphql#readme
bug-reports: https://github.com/caraus-ecms/graphql/issues
author: Danny Navarro <j@dannynavarro.net>,
Matthías Páll Gissurarson <mpg@mpg.is>,
Sólrún Halla Einarsdóttir <she@mpg.is>
maintainer: belka@caraus.de
copyright: (c) 2019-2020 Eugen Wissner,
(c) 2015-2017 J. Daniel Navarro
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
CHANGELOG.md
CONTRIBUTING.md
2020-07-03 07:00:37 +02:00
LICENSE
README.md
2020-07-03 07:00:37 +02:00
docs/tutorial/tutorial.lhs
source-repository head
type: git
location: https://github.com/caraus-ecms/graphql
library
exposed-modules:
Language.GraphQL
Language.GraphQL.AST
Language.GraphQL.AST.DirectiveLocation
Language.GraphQL.AST.Document
Language.GraphQL.AST.Encoder
Language.GraphQL.AST.Lexer
Language.GraphQL.AST.Parser
Language.GraphQL.Error
Language.GraphQL.Execute
Language.GraphQL.Execute.Coerce
Language.GraphQL.Type
Language.GraphQL.Type.In
Language.GraphQL.Type.Out
2020-07-06 19:10:34 +02:00
Language.GraphQL.Type.Schema
2020-07-20 21:29:12 +02:00
Language.GraphQL.Validate
Language.GraphQL.Validate.Validation
Test.Hspec.GraphQL
2020-07-03 07:00:37 +02:00
other-modules:
Language.GraphQL.Execute.Execution
Language.GraphQL.Execute.Subscribe
2020-07-03 07:00:37 +02:00
Language.GraphQL.Execute.Transform
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
2020-07-03 07:00:37 +02:00
hs-source-dirs:
src
build-depends:
aeson
, base >=4.7 && <5
, conduit
2020-07-03 07:00:37 +02:00
, containers
, exceptions
, hspec-expectations
2020-07-03 07:00:37 +02:00
, megaparsec
, parser-combinators
, scientific
, text
, transformers
, unordered-containers
default-language: Haskell2010
test-suite tasty
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Language.GraphQL.AST.EncoderSpec
Language.GraphQL.AST.LexerSpec
Language.GraphQL.AST.ParserSpec
Language.GraphQL.ErrorSpec
Language.GraphQL.Execute.CoerceSpec
Language.GraphQL.ExecuteSpec
Language.GraphQL.Type.OutSpec
2020-07-20 21:29:12 +02:00
Language.GraphQL.ValidateSpec
2020-07-03 07:00:37 +02:00
Test.DirectiveSpec
Test.FragmentSpec
Test.RootOperationSpec
Test.StarWars.Data
Test.StarWars.QuerySpec
Test.StarWars.Schema
Paths_graphql
hs-source-dirs:
tests
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
QuickCheck
, aeson
, base >=4.7 && <5
, conduit
2020-07-03 07:00:37 +02:00
, containers
, exceptions
2020-07-03 07:00:37 +02:00
, graphql
, hspec
, hspec-expectations
, hspec-megaparsec
, megaparsec
, parser-combinators
, raw-strings-qq
, scientific
, text
, transformers
, unordered-containers
default-language: Haskell2010