diff options
| author | Eugen Wissner <belka@caraus.de> | 2019-06-11 06:13:01 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2019-06-11 06:34:15 +0200 |
| commit | ce169ecef2ff9530817e330df7584c96d6ca6fee (patch) | |
| tree | d590f54f441b42db96862d65eb24aa37291958e4 /package.yaml | |
| parent | 40f9024b51900c73bc0f65444c16022bd73820be (diff) | |
| download | graphql-ce169ecef2ff9530817e330df7584c96d6ca6fee.tar.gz | |
Add package.yaml, update stack snapshot to 13.25
Diffstat (limited to 'package.yaml')
| -rw-r--r-- | package.yaml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/package.yaml b/package.yaml new file mode 100644 index 0000000..96014e7 --- /dev/null +++ b/package.yaml @@ -0,0 +1,53 @@ +name: graphql +version: 0.3 +synopsis: Haskell GraphQL implementation +description: + This package provides a rudimentary parser for the + <https://facebook.github.io/graphql/ GraphQL> language. +homepage: https://github.com/jdnavarro/graphql-haskell +maintainer: j@dannynavarro.net +copyright: Copyright (C) 2015-2019 J. Daniel Navarro +category: Web +github: jdnavarro/graphql-haskell +author: +- Danny Navarro +- Matthías Páll Gissurarson +- Sólrún Halla Einarsdóttir + +extra-source-files: +- CHANGELOG.md +- README.md +- LICENSE +- TODO +- docs/tutorial/tutorial.lhs + +data-files: +- tests/data/*.graphql +- tests/data/*.min.graphql + +dependencies: +- aeson +- attoparsec +- base >= 4.7 && < 5 +- semigroups +- text +- unordered-containers + +library: + source-dirs: . + dependencies: + - scientific + +tests: + tasty: + main: tasty.hs + source-dirs: tests + ghc-options: + - -threaded + - -rtsopts + - -with-rtsopts=-N + dependencies: + - graphql + - raw-strings-qq + - tasty + - tasty-hunit |
