-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update from Hackage at 2019-08-14T12:51:33Z
- Loading branch information
1 parent
19bf1e8
commit d7a3c22
Showing
2 changed files
with
84 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
cabal-version: 1.12 | ||
name: graphql | ||
version: 0.5.0.0 | ||
license: BSD3 | ||
license-file: LICENSE | ||
copyright: (c) 2019 Eugen Wissner, | ||
(c) 2015-2017 J. Daniel Navarro | ||
maintainer: belka@caraus.de | ||
author: Danny Navarro <j@dannynavarro.net>, | ||
Matthías Páll Gissurarson <mpg@mpg.is>, | ||
Sólrún Halla Einarsdóttir <she@mpg.is> | ||
homepage: https://github.com/caraus-ecms/graphql#readme | ||
bug-reports: https://github.com/caraus-ecms/graphql/issues | ||
synopsis: Haskell GraphQL implementation | ||
description: | ||
This package provides a rudimentary parser for the <https://graphql.github.io/graphql-spec/June2018/ GraphQL> language. | ||
category: Language | ||
build-type: Simple | ||
data-files: | ||
tests/data/kitchen-sink.graphql | ||
tests/data/kitchen-sink.min.graphql | ||
extra-source-files: | ||
CHANGELOG.md | ||
README.md | ||
LICENSE | ||
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.Core | ||
Language.GraphQL.AST.Transform | ||
Language.GraphQL.Encoder | ||
Language.GraphQL.Error | ||
Language.GraphQL.Execute | ||
Language.GraphQL.Lexer | ||
Language.GraphQL.Parser | ||
Language.GraphQL.Schema | ||
Language.GraphQL.Trans | ||
Language.GraphQL.Type | ||
hs-source-dirs: src | ||
other-modules: | ||
Paths_graphql | ||
default-language: Haskell2010 | ||
build-depends: | ||
aeson >=1.4.4.0 && <1.5, | ||
base >=4.7 && <5, | ||
megaparsec >=7.0.5 && <7.1, | ||
text >=1.2.3.1 && <1.3, | ||
transformers >=0.5.6.2 && <0.6, | ||
unordered-containers >=0.2.10.0 && <0.3 | ||
|
||
test-suite tasty | ||
type: exitcode-stdio-1.0 | ||
main-is: Spec.hs | ||
hs-source-dirs: tests | ||
other-modules: | ||
Language.GraphQL.EncoderSpec | ||
Language.GraphQL.ErrorSpec | ||
Language.GraphQL.LexerSpec | ||
Language.GraphQL.ParserSpec | ||
Test.KitchenSinkSpec | ||
Test.StarWars.Data | ||
Test.StarWars.QuerySpec | ||
Test.StarWars.Schema | ||
Paths_graphql | ||
default-language: Haskell2010 | ||
ghc-options: -threaded -rtsopts -with-rtsopts=-N | ||
build-depends: | ||
aeson >=1.4.4.0 && <1.5, | ||
base >=4.7 && <5, | ||
graphql -any, | ||
hspec >=2.7.1 && <2.8, | ||
hspec-expectations >=0.8.2 && <0.9, | ||
megaparsec >=7.0.5 && <7.1, | ||
raw-strings-qq ==1.1.*, | ||
text >=1.2.3.1 && <1.3, | ||
transformers >=0.5.6.2 && <0.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"package-hashes":{"MD5":"199bc48abda85a46b31aa017e0bdd72c","Skein512_512":"349e4bcbf2244e0ae482135fbf41fbb7a16151225778355adda6ed8439f025d9ae831b3be83608538d3834acaf910d3d2e1e5c1762e90cf86d3d7e89dbe5298f","SHA1":"50d682b4591fefb81d0177e9adf669345488da4f","SHA512":"1ceea96dcdb53d5d0e36bc6a05b629172dd2d83429281974bedb4df5a9bd9584a03d581c2bd15b19bfe535da271c86497815e86fbe5bc8672e990d8cf4c5a29c","SHA256":"0a7fac9ff658c359718300158b86f6dcf0006c1e90957c4af971d6c11d348604"},"package-locations":["https://hackage.haskell.org/package/graphql-0.5.0.0/graphql-0.5.0.0.tar.gz","https://s3.amazonaws.com/hackage.fpcomplete.com/package/graphql-0.5.0.0.tar.gz"],"package-size":22662} |