forked from haskell-servant/servant-cassava
-
Notifications
You must be signed in to change notification settings - Fork 0
/
servant-cassava.cabal
59 lines (54 loc) · 1.61 KB
/
servant-cassava.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
cabal-version: >=1.10
name: servant-cassava
version: 0.10.2
synopsis: Servant CSV content-type for cassava
category: Servant, Web, CSV
description: Servant CSV content-type for cassava.
homepage: http://haskell-servant.readthedocs.org/
bug-reports: http://github.com/haskell-servant/servant-cassava/issues
license: BSD3
license-file: LICENSE
author: Servant Contributors
maintainer: [email protected]
copyright: 2015-2018 Servant Contributors
build-type: Simple
tested-with:
GHC ==7.10.3
|| ==8.0.2
|| ==8.2.2
|| ==8.4.4
|| ==8.6.5
|| ==8.8.1
source-repository head
type: git
location: http://github.com/haskell-servant/servant-cassava.git
library
exposed-modules: Servant.CSV.Cassava
build-depends: base >=4.7 && <5
, base-compat >=0.9.1 && <0.13
, bytestring
, cassava >=0.4.3 && <0.6
, servant >=0.7 && <0.21
, http-media
, vector
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite example
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs:
example
ghc-options: -Wall
build-depends:
base
, base-compat
, bytestring
, http-media
, servant
, cassava
, servant-cassava
, servant-server >=0.4.4.5 && <0.21
, wai >=3.0.3.0 && <3.3
, warp >=3.0.13.1 && <3.4
default-language: Haskell2010