-
Notifications
You must be signed in to change notification settings - Fork 2
/
servant-yaml.cabal
61 lines (57 loc) · 1.49 KB
/
servant-yaml.cabal
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
name: servant-yaml
version: 0.1.0.1
x-revision: 4
synopsis: Servant support for yaml
description: Servant support for yaml.
category: Web, Servant
homepage: https://github.com/haskell-servant/servant-yaml#readme
bug-reports: https://github.com/haskell-servant/servant-yaml/issues
author: Oleg Grenrus <oleg.grenrus@iki.fi>
maintainer: Oleg Grenrus <oleg.grenrus@iki.fi>
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
tested-with:
GHC ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.1
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/haskell-servant/servant-yaml
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base >=4.9 && <4.14
, bytestring >=0.10.8.1 && <0.11
, http-media >=0.7.1.3 && <0.9
, servant >=0.15 && <0.18
, yaml >=0.11 && <0.12
exposed-modules:
Servant.Yaml
default-language: Haskell2010
test-suite example
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
example
ghc-options: -Wall
build-depends:
base
, bytestring
, http-media
, servant
, yaml
, servant-yaml
, servant-server >=0.15 && <0.18
, base-compat >=0.10.5 && <0.12
, aeson >=1.4.1.0 && <1.5
, wai >=3.2.1.2 && <3.3
, warp >=3.2.25 && <3.4
default-language: Haskell2010