-
Notifications
You must be signed in to change notification settings - Fork 12
/
servant-lucid.cabal
58 lines (51 loc) · 1.75 KB
/
servant-lucid.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
cabal-version: >=1.10
name: servant-lucid
version: 0.9.0.6
synopsis: Servant support for lucid
description:
Servant support for lucid.
.
'HTML' content type which will use `ToHtml` class.
.
Lucid.Servant uses `Link` rather than `Text` for safe 'href' attributes.
homepage: http://haskell-servant.readthedocs.org/
bug-reports: http://github.com/haskell-servant/servant-lucid/issues
license: BSD3
license-file: LICENSE
author: Servant Contributors
maintainer: haskell-servant-maintainers@googlegroups.com
copyright: 2015-2018 Servant Contributors
category: Web, Servant
build-type: Simple
extra-source-files: CHANGELOG.md
tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.2 || ==9.2.7
source-repository head
type: git
location: http://github.com/haskell-servant/servant-lucid.git
library
exposed-modules: Servant.HTML.Lucid
Lucid.Servant
build-depends: base >=4.9 && <5
, http-media >=0.6.4 && <0.9
, lucid >=2.9.8 && <2.12
, text >=1.2.3.0 && <1.3 || >= 2 && < 2.2
, servant >=0.17 && <0.21
if !impl(ghc >= 8.0)
build-depends: semigroups >=0.18.4 && <0.20
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
, lucid
, servant-lucid
, servant-server >=0.14 && <0.21
, wai >=3.0.3.0 && <3.3
, warp >=3.0.13.1 && <3.5
default-language: Haskell2010