gql2hs/package.yaml

96 lines
2.0 KiB
YAML
Raw Normal View History

2019-07-31 18:19:22 +00:00
name: gql2hs
version: 0.1.0.0
github: "fredefox/gql2hs"
license: BSD3
author: "Frederik Hanghøj Iversen"
maintainer: "fhanghojiversen@zendesk.com"
copyright: "2019 Frederik Hanghøj Iversen"
extra-source-files:
- README.md
- ChangeLog.md
# Metadata used when publishing your package
# synopsis: Short description of your package
# category: Web
# To avoid duplicated efforts in documentation and dealing with the
# complications of embedding Haddock markup inside cabal files, it is
# common to point users to the README.md file.
description: Please see the README on GitHub at <https://github.com/fredefox/gql2hs#readme>
dependencies:
- base >= 4.7 && < 5
2019-07-31 20:25:10 +00:00
- graphql-api
2019-07-31 18:19:22 +00:00
- haskell-src-exts
- text
2019-07-31 20:25:10 +00:00
- attoparsec
2019-07-31 18:19:22 +00:00
library:
source-dirs: src
executables:
2019-08-01 07:51:04 +00:00
gql2hs:
2019-07-31 18:19:22 +00:00
main: Main.hs
source-dirs: app
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- gql2hs
tests:
2019-08-01 07:51:04 +00:00
test:
2019-07-31 18:19:22 +00:00
main: Spec.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- gql2hs
2019-07-31 20:25:10 +00:00
default-extensions:
- BangPatterns
- BinaryLiterals
- ConstraintKinds
- DefaultSignatures
- DeriveAnyClass
- DeriveDataTypeable
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveLift
- DeriveTraversable
- DerivingStrategies
- DisambiguateRecordFields
- DuplicateRecordFields
- EmptyCase
- EmptyDataDecls
- ExistentialQuantification
- ExplicitForAll
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- GeneralisedNewtypeDeriving
- InstanceSigs
- LambdaCase
- MultiParamTypeClasses
- MultiWayIf
- NamedFieldPuns
- NamedWildCards
- NumDecimals
- PackageImports
- PartialTypeSignatures
- QuasiQuotes
- RankNTypes
- RecordWildCards
- ScopedTypeVariables
- StandaloneDeriving
- TypeApplications
- TypeFamilies
- UnicodeSyntax
- OverloadedStrings