2024-07-24 12:11:00 +02:00
|
|
|
cabal-version: 3.0
|
2021-11-18 08:19:38 +01:00
|
|
|
|
|
|
|
name: graphql-spice
|
2024-07-19 13:22:04 +02:00
|
|
|
version: 1.0.3.0
|
2021-11-18 08:19:38 +01:00
|
|
|
synopsis: GraphQL with batteries
|
2023-02-19 11:26:27 +01:00
|
|
|
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
|
2024-07-24 12:11:00 +02:00
|
|
|
copyright: (c) 2021-2024 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:
|
2022-09-08 19:53:22 +02:00
|
|
|
Language.GraphQL.Class
|
|
|
|
Language.GraphQL.JSON
|
2022-08-24 21:33:20 +02:00
|
|
|
Language.GraphQL.Resolver
|
2022-03-23 21:58:12 +01:00
|
|
|
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,
|
2022-03-23 21:58:12 +01:00
|
|
|
conduit ^>= 1.3.4,
|
2024-07-24 12:11:00 +02:00
|
|
|
containers >= 0.6 && < 0.8,
|
2022-02-02 09:39:57 +01:00
|
|
|
exceptions ^>= 0.10.4,
|
2022-03-23 21:58:12 +01:00
|
|
|
hspec-expectations >= 0.8.2 && < 0.9,
|
2024-07-24 12:11:00 +02:00
|
|
|
graphql ^>= 1.3.0,
|
2022-02-02 09:39:57 +01:00
|
|
|
megaparsec >= 9.0 && < 10,
|
2022-01-18 13:00:58 +01:00
|
|
|
scientific ^>= 0.3.7,
|
2024-07-07 12:55:42 +02:00
|
|
|
template-haskell >= 2.16 && < 3,
|
2022-03-23 21:58:12 +01:00
|
|
|
text >= 1.2 && < 3,
|
2024-07-24 12:11:00 +02:00
|
|
|
time >= 1.12.2 && < 1.15,
|
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:
|
2022-09-08 19:53:22 +02:00
|
|
|
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,
|
2022-01-15 11:50:20 +01:00
|
|
|
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
|