forked from alpmestan/servant-ede
-
Notifications
You must be signed in to change notification settings - Fork 0
/
servant-ede.cabal
65 lines (60 loc) · 1.56 KB
/
servant-ede.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
62
63
64
65
name: servant-ede
version: 0.6
synopsis: Combinators for rendering EDE templates in servant web applications
description:
Combinators for rendering EDE templates in servant web applications.
.
Documentation and examples available at "Servant.EDE".
homepage: http://github.com/alpmestan/servant-ede
bug-reports: http://github.com/alpmestan/servant-ede/issues
license: BSD3
license-file: LICENSE
author: Alp Mestanogullari
maintainer: [email protected]
copyright: 2015-2016 Alp Mestanogullari
category: Web
build-type: Simple
extra-source-files: README.md
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/alpmestan/servant-ede.git
library
exposed-modules:
Servant.EDE
, Servant.EDE.Internal
, Servant.EDE.Internal.Reify
, Servant.EDE.Internal.ToObject
, Servant.EDE.Internal.Validate
build-depends:
aeson
, base >=4.7 && <5
, bytestring
, filepath
, ede
, either
, http-media
, http-types
, semigroups
, servant
, text
, transformers
, unordered-containers
, vector
, xss-sanitize
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010
executable servant-ede-example
main-is: example.hs
hs-source-dirs: example
default-language: Haskell2010
build-depends:
base
, ede
, http-media
, servant-server
, servant-ede
, text
, unordered-containers
, warp