-
Notifications
You must be signed in to change notification settings - Fork 18
/
markdown-unlit.cabal
74 lines (68 loc) · 1.72 KB
/
markdown-unlit.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
66
67
68
69
70
71
72
73
74
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.2.
--
-- see: https://github.com/sol/hpack
name: markdown-unlit
version: 0.6.0
synopsis: Literate Haskell support for Markdown
category: Development
homepage: https://github.com/sol/markdown-unlit#readme
bug-reports: https://github.com/sol/markdown-unlit/issues
license: MIT
license-file: LICENSE
copyright: (c) 2012-2023 Simon Hengel
author: Simon Hengel <[email protected]>
maintainer: Simon Hengel <[email protected]>
build-type: Simple
description: Documentation is here: <https://github.com/sol/markdown-unlit#readme>
source-repository head
type: git
location: https://github.com/sol/markdown-unlit
library
hs-source-dirs:
src
ghc-options: -Wall
build-depends:
base ==4.*
, base-compat
exposed-modules:
Text.Markdown.Unlit
other-modules:
Paths_markdown_unlit
default-language: Haskell2010
executable markdown-unlit
main-is: Main.hs
other-modules:
Paths_markdown_unlit
hs-source-dirs:
driver
ghc-options: -Wall
build-depends:
base ==4.*
, base-compat
, markdown-unlit
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
src
ghc-options: -Wall
cpp-options: -DTEST
build-tool-depends:
hspec-discover:hspec-discover
build-depends:
QuickCheck
, base ==4.*
, base-compat
, directory
, hspec ==2.*
, silently
, stringbuilder
, temporary
other-modules:
Text.Markdown.UnlitSpec
Text.Markdown.Unlit
Paths_markdown_unlit
default-language: Haskell2010