graphql-spice/graphql-spice.cabal

64 lines
1.7 KiB
Plaintext
Raw Normal View History

2021-11-18 08:19:38 +01:00
cabal-version: 2.4
name: graphql-spice
version: 0.1.0.0
synopsis: GraphQL with batteries
description: Various extensions and convenience functions for the core
graphql package.
2021-11-21 08:30:22 +01:00
category: Language
2021-11-20 07:20:31 +01:00
homepage: https://www.caraus.tech/projects/pub-graphql-spice
bug-reports: https://www.caraus.tech/projects/pub-graphql-spice/issues
2021-11-18 08:19:38 +01:00
author: Eugen Wissner <belka@caraus.de>
maintainer: belka@caraus.de
copyright: (c) 2021 Eugen Wissner
2021-11-21 08:30:22 +01:00
license: MPL-2.0
license-files: LICENSE
build-type: Simple
2021-11-18 08:19:38 +01:00
extra-source-files: CHANGELOG.md
2021-11-20 07:20:31 +01:00
tested-with:
2021-11-21 08:30:22 +01:00
GHC == 8.10.7
2021-11-18 08:19:38 +01:00
source-repository head
type: git
location: git://caraus.tech/pub/graphql-spice.git
library
exposed-modules:
Language.GraphQL.Foundation,
Language.GraphQL.Serialize
2021-11-18 08:19:38 +01:00
other-modules:
hs-source-dirs: src
ghc-options: -Wall
build-depends:
aeson ^>= 2.0.3,
2021-11-21 08:30:22 +01:00
base ^>=4.14.3.0,
2022-02-02 09:39:57 +01:00
containers ^>= 0.6.2,
exceptions ^>= 0.10.4,
2022-01-18 13:00:58 +01:00
graphql ^>= 1.0.2,
2022-02-02 09:39:57 +01:00
megaparsec >= 9.0 && < 10,
2022-01-18 13:00:58 +01:00
scientific ^>= 0.3.7,
text ^>= 1.2.5,
2022-02-02 09:39:57 +01:00
vector ^>= 0.12.3,
2022-01-18 13:00:58 +01:00
unordered-containers ^>= 0.2.16
2021-11-18 08:19:38 +01:00
default-language: Haskell2010
2021-11-20 07:20:31 +01:00
test-suite graphql-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
2021-11-21 08:30:22 +01:00
Language.GraphQL.DirectiveSpec
Language.GraphQL.FragmentSpec
Language.GraphQL.RootOperationSpec
2021-11-20 07:20:31 +01:00
hs-source-dirs:
2021-11-21 08:30:22 +01:00
tests
2021-11-20 07:20:31 +01:00
ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall
build-depends:
2021-11-21 08:30:22 +01:00
aeson,
base >= 4.8 && < 5,
graphql,
graphql-spice,
2021-11-21 08:30:22 +01:00
hspec >= 2.9.1 && < 3,
text,
unordered-containers
2021-11-20 07:20:31 +01:00
default-language: Haskell2010