-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.yaml
69 lines (64 loc) · 1.67 KB
/
package.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: servant-client-haxl
version: 0.0.0.0
synopsis: Haxl-based client functions for servant APIs
description: See README.md
homepage: http://github.com/jkarni/servant-client-haxl#readme
license: BSD3
license-file: LICENSE
author: Julian K. Arni
maintainer: [email protected]
copyright: (c) 2017 Julian K. Arni
github: jkarni/servant-client-haxl
stability: alpha
tested-with: GHC == 7.10.3, GHC == 8.0.2
ghc-options: -Wall
dependencies:
- base >= 4.8 && < 4.10
- async >= 2.1 && < 2.2
- bytestring >= 0.10 && < 0.11
- text >= 1 && < 2
- servant-client >= 0.11 && < 0.13
- servant-client-core >= 0.11 && < 0.13
- haxl >= 0.5 && < 0.6
- http-client >= 0.5 && < 0.6
- http-types >= 0.9 && < 0.10
- http-media >= 0.6 && < 0.7
- hashable >= 1 && < 2
- exceptions >= 0.8 && < 0.9
- mtl >= 2.2 && < 2.3
default-extensions:
- AutoDeriveTypeable
- ConstraintKinds
- DataKinds
- DefaultSignatures
- DeriveFoldable
- DeriveFunctor
- DeriveGeneric
- DeriveTraversable
- FlexibleContexts
- FlexibleInstances
- FunctionalDependencies
- GADTs
- KindSignatures
- MultiParamTypeClasses
- OverloadedStrings
- RankNTypes
- ScopedTypeVariables
- TypeFamilies
- TypeOperators
library:
source-dirs: src
other-modules: []
tests:
spec:
main: Spec.hs
source-dirs: test
dependencies:
- servant-client-haxl
- aeson
- hspec > 2 && < 3
- QuickCheck >= 2.8 && < 2.10
- quickcheck-instances >= 0.3 && < 0.4
- servant
- servant-server
- warp