graphql/graphql.cabal

90 lines
2.3 KiB
Plaintext
Raw Normal View History

cabal-version: 1.12
2019-06-28 11:12:28 +02:00
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
2019-07-22 05:50:00 +02:00
-- hash: 0738bb4bfceb40525227c29cb0c32d360f528ba3a84890817c65f5950e37b311
name: graphql
2019-07-06 07:57:18 +02:00
version: 0.4.0.0
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/jdnavarro/graphql-haskell
bug-reports: https://github.com/caraus-ecms/graphql/issues
2019-07-06 07:57:18 +02:00
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 Eugen Wissner,
(c) 2015-2017 J. Daniel Navarro
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
CHANGELOG.md
README.md
LICENSE
docs/tutorial/tutorial.lhs
data-files:
tests/data/kitchen-sink.graphql
tests/data/kitchen-sink.min.graphql
source-repository head
type: git
location: https://github.com/caraus-ecms/graphql
library
exposed-modules:
Language.GraphQL
Language.GraphQL.AST
Language.GraphQL.AST.Core
Language.GraphQL.AST.Transform
Language.GraphQL.Encoder
Language.GraphQL.Error
Language.GraphQL.Execute
2019-06-21 10:44:58 +02:00
Language.GraphQL.Lexer
Language.GraphQL.Parser
Language.GraphQL.Schema
Language.GraphQL.Trans
Language.GraphQL.Type
other-modules:
Paths_graphql
hs-source-dirs:
2019-06-30 06:07:32 +02:00
src
build-depends:
aeson
, base >=4.7 && <5
2019-06-21 10:44:58 +02:00
, megaparsec
, text
2019-06-28 11:12:28 +02:00
, transformers
, unordered-containers
default-language: Haskell2010
test-suite tasty
type: exitcode-stdio-1.0
2019-07-10 05:57:35 +02:00
main-is: Spec.hs
other-modules:
2019-07-10 05:57:35 +02:00
Language.GraphQL.LexerSpec
2019-07-22 05:50:00 +02:00
Language.GraphQL.ParserSpec
2019-07-10 05:57:35 +02:00
Test.KitchenSinkSpec
Test.StarWars.Data
2019-07-10 05:57:35 +02:00
Test.StarWars.QuerySpec
Test.StarWars.Schema
Paths_graphql
hs-source-dirs:
tests
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
aeson
, base >=4.7 && <5
, graphql
2019-07-10 05:57:35 +02:00
, hspec
, hspec-expectations
2019-06-21 10:44:58 +02:00
, megaparsec
, raw-strings-qq
, text
2019-06-28 11:12:28 +02:00
, transformers
default-language: Haskell2010