graphql-spice/graphql-spice.cabal

76 lines
2.0 KiB
Plaintext
Raw Permalink Normal View History

2021-11-18 08:19:38 +01:00
cabal-version: 2.4
name: graphql-spice
2023-07-07 16:45:47 +02:00
version: 1.0.2.0
2021-11-18 08:19:38 +01:00
synopsis: GraphQL with batteries
description: Various extensions and convenience functions for the core
2021-11-18 08:19:38 +01:00
graphql package.
2021-11-21 08:30:22 +01:00
category: Language
2023-04-19 18:43:06 +02:00
homepage: https://git.caraus.tech/OSS/graphql-spice
bug-reports: https://git.caraus.tech/OSS/graphql-spice/issues
2021-11-18 08:19:38 +01:00
author: Eugen Wissner <belka@caraus.de>
maintainer: belka@caraus.de
2023-02-17 11:59:24 +01:00
copyright: (c) 2021-2023 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:
2023-11-27 14:09:45 +01:00
GHC == 9.4.8
2021-11-18 08:19:38 +01:00
source-repository head
type: git
2023-04-19 18:43:06 +02:00
location: https://git.caraus.tech/OSS/graphql-spice.git
2021-11-18 08:19:38 +01:00
library
exposed-modules:
Language.GraphQL.Class
Language.GraphQL.JSON
Language.GraphQL.Resolver
Test.Hspec.GraphQL
2021-11-18 08:19:38 +01:00
other-modules:
hs-source-dirs: src
ghc-options: -Wall
build-depends:
2023-06-29 19:18:35 +02:00
aeson >= 2.0.3 && < 2.3,
2022-03-29 20:20:19 +02:00
base >= 4.7 && < 5,
conduit ^>= 1.3.4,
2022-02-02 09:39:57 +01:00
containers ^>= 0.6.2,
exceptions ^>= 0.10.4,
hspec-expectations >= 0.8.2 && < 0.9,
2023-04-20 12:51:18 +02:00
graphql >= 1.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 && < 3,
2023-06-26 16:50:14 +02:00
time >= 1.11.1,
2023-06-29 19:18:35 +02:00
transformers >= 0.5.6 && < 0.7,
vector >= 0.12 && < 0.14,
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:
Language.GraphQL.ClassSpec
2022-03-29 20:20:19 +02:00
Language.GraphQL.CoerceSpec
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,
2022-03-29 20:20:19 +02:00
base,
2021-11-21 08:30:22 +01:00
graphql,
graphql-spice,
2021-11-21 08:30:22 +01:00
hspec >= 2.9.1 && < 3,
2022-03-29 20:20:19 +02:00
scientific,
2021-11-21 08:30:22 +01:00
text,
2023-06-26 16:50:14 +02:00
time,
2021-11-21 08:30:22 +01:00
unordered-containers
2023-11-27 14:09:45 +01:00
build-tool-depends:
hspec-discover:hspec-discover
2021-11-20 07:20:31 +01:00
default-language: Haskell2010