-
Notifications
You must be signed in to change notification settings - Fork 1
/
ogmarkup.cabal
72 lines (67 loc) · 1.78 KB
/
ogmarkup.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
name: ogmarkup
version: 3.1.0
cabal-version: >=1.10
build-type: Simple
license: MIT
license-file: LICENSE
copyright: 2016 Ogma Project
maintainer: [email protected]
homepage: http://github.com/ogma-project/ogmarkup
synopsis: A lightweight markup language for story writers
description:
Please see README.md
category: Web
author: Thomas Letan, Laurent Georget
flag bench
description: "a benchmark application"
default: False
source-repository head
type: git
location: https://github.com/ogma-project/ogmarkup
library
exposed-modules:
Text.Ogmarkup
Text.Ogmarkup.Private.Parser
Text.Ogmarkup.Private.Ast
Text.Ogmarkup.Private.Generator
Text.Ogmarkup.Private.Typography
Text.Ogmarkup.Private.Config
build-depends:
base >=4.7 && <5,
megaparsec >=6 && <7,
mtl -any
default-language: Haskell2010
hs-source-dirs: src
test-suite ogmadown-test
type: exitcode-stdio-1.0
main-is: Spec.hs
build-depends:
base -any,
hspec -any,
hspec-megaparsec,
ogmarkup -any,
shakespeare -any,
megaparsec -any,
text -any
default-language: Haskell2010
other-modules:
ParserSpec,
GeneratorSpec,
OgmarkupSpec
hs-source-dirs: test
ghc-options: -threaded -rtsopts -with-rtsopts=-N1
benchmark ogmarkup-bench
default-language: Haskell2010
hs-source-dirs: bench
main-is: Bench.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N1
type: exitcode-stdio-1.0
if flag(bench)
build-depends: base -any
, criterion -any
, ogmarkup -any
, file-embed-poly
, text -any
buildable: True
else
buildable: False