-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpandoc-builder-monadic.cabal
44 lines (42 loc) · 1.52 KB
/
pandoc-builder-monadic.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
cabal-version: 2.2
name: pandoc-builder-monadic
version: 1.1.1
synopsis: A monadic DSL for building pandoc documents
description:
A convenient way to build pandoc documents.
Supports all of the applicative and monadic utilities, and
reduces syntactic noise via do notation.
homepage: https://github.com/414owen/pandoc-builder-monadic
license: BSD-3-Clause
license-file: LICENSE
author: Owen Shepherd
maintainer: [email protected]
category: Text
build-type: Simple
extra-source-files: README.md CHANGELOG.md
tested-with: GHC==9.6.2
, GHC==9.4.5
, GHC==9.2.8
, GHC==9.0.2
, GHC==8.10.7
, GHC==8.8.4
, GHC==8.6.5
, GHC==8.4.4
, GHC==8.2.2
, GHC==8.0.2
common warnings
ghc-options: -Wall -Wextra -Wunused-packages
library
import: warnings
exposed-modules: Text.Pandoc.Builder.Monadic
, Text.Pandoc.Builder.Monadic.Veneer
, Text.Pandoc.Builder.Monadic.Verbatim
, Text.Pandoc.Builder.Monadic.Utils
, Text.Pandoc.Builder.Monadic.Internal
build-depends: base >=4.9.0.0 && <5
, dlist >=0.2 && <2
, mtl >=1.1.0.0 && <3
, pandoc-types >= 1.21 && < 2
, text >=0.2 && <3
hs-source-dirs: src
default-language: Haskell2010