forked from mpickering/servant-pandoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservant-pandoc.cabal
43 lines (34 loc) · 1.4 KB
/
servant-pandoc.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
name: servant-pandoc
version: 0.5.0.0
synopsis: Use Pandoc to render servant API documentation
description: Use pandoc to generate documentation for your Servant API.
license: MIT
license-file: LICENSE
author: Matthew Pickering, Ivan Miljenovic
maintainer: [email protected]
category: Web, Servant
build-type: Simple
extra-source-files: CHANGELOG, README.md
cabal-version: >=1.10
tested-with: GHC == 7.8.2, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.1, GHC == 8.3.*
source-repository head
type: git
location: https://github.com/mpickering/servant-pandoc/
library
exposed-modules: Servant.Docs.Pandoc
other-extensions: OverloadedStrings
build-depends: base >=4.7 && <5
, http-media >=0.6 && <0.8
, lens >=4.9 && <5
, pandoc-types >=1.12 && <1.18
, servant-docs >= 0.11.1 && < 0.12
, unordered-containers >=0.2 && <0.3
, text >=1.2 && <1.3
, bytestring >=0.10 && <0.11
, string-conversions >= 0.1 && < 0.5
, case-insensitive >= 0.2 && < 1.3
if !impl(ghc >= 8.0)
build-depends: semigroups >= 0.17 && < 0.19
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall