This repository has been archived by the owner on Oct 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
md-bench.cabal
71 lines (66 loc) · 2.14 KB
/
md-bench.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
name: md-bench
version: 0.0.1.0
cabal-version: >= 1.18
tested-with: GHC==8.2.2
license: BSD3
license-file: LICENSE.md
author: Mark Karpov <markkarpov92@gmail.com>
maintainer: Mark Karpov <markkarpov92@gmail.com>
homepage: https://github.com/mrkkrp/md-bench
bug-reports: https://github.com/mrkkrp/md-bench/issues
category: Categories
synopsis: Description
build-type: Simple
description: Description.
extra-doc-files: README.md
data-files: data/README.md
source-repository head
type: git
location: https://github.com/mrkkrp/md-bench.git
library
hs-source-dirs: src
build-depends: base
, blaze-html
, cheapskate
, cmark
, lucid
, markdown
, mmark
, pandoc
, text
exposed-modules: MD
ghc-options: -O2 -Wall
default-language: Haskell2010
executable md-bench
main-is: Main.hs
hs-source-dirs: app
build-depends: base
, md-bench
, text
ghc-options: -O2 -Wall
default-language: Haskell2010
benchmark bench-speed
main-is: Main.hs
hs-source-dirs: bench/speed
type: exitcode-stdio-1.0
build-depends: base
, criterion
, mmark
, text
, deepseq
, md-bench
ghc-options: -O2 -Wall
default-language: Haskell2010
benchmark bench-memory
main-is: Main.hs
hs-source-dirs: bench/memory
type: exitcode-stdio-1.0
build-depends: base >= 4.8 && < 5.0
, deepseq
, lucid
, mmark
, text >= 0.2 && < 1.3
, weigh >= 0.0.4
, md-bench
ghc-options: -O2 -Wall
default-language: Haskell2010