-
Notifications
You must be signed in to change notification settings - Fork 1
/
scarlet.cabal
106 lines (102 loc) · 3.96 KB
/
scarlet.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: scarlet
version: 0.1.0.0
synopsis: A lightweight blogging engine built on Yesod.
homepage: https://github.com/rhwlo/scarlet
license-file: LICENSE
author: Joshua Coats
maintainer: [email protected]
category: Web
build-type: Simple
cabal-version: >=1.22
executable scarlet
main-is: Scarlet.hs
ghc-options: -optl-static -optl-pthread
other-extensions: EmptyDataDecls,
FlexibleContexts,
GADTs,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
OverloadedStrings,
QuasiQuotes,
TemplateHaskell,
TypeFamilies
build-depends: base >= 4.8.0.0,
containers >= 0.5.6.2,
Cabal >= 1.22.4.0,
exceptions >= 0.8.0.2,
pandoc >= 1.15.0.6,
persistent >= 2.2,
persistent-sqlite >= 2.2,
persistent-template >= 2.1.3.6,
resourcet >= 1.1.6,
monad-logger >= 0.3.13.2,
time >= 1.5.0.1,
text >= 1.2.1.3,
transformers >= 0.4.2.0,
yesod >= 1.4.2,
yesod-static >= 1.5.0.3
hs-source-dirs: src
default-language: Haskell2010
library
exposed-modules: Scarlet.Post.Internal,
Scarlet.Entry
hs-source-dirs: src
ghc-options: -optl-static -optl-pthread
other-extensions: FlexibleContexts,
OverloadedStrings
build-depends: base >= 4.8.0.0,
containers >= 0.5.6.2,
Cabal >= 1.22.4.0,
monad-logger >= 0.3.13.2,
HTTP >= 4000.2.20,
network-uri >= 2.6.0.3,
pandoc >= 1.15.0.6,
parsec >= 3.1.9,
persistent >= 2.2,
persistent-sqlite >= 2.2,
persistent-template >= 2.1.3.6,
time >= 1.5.0.1,
transformers >= 0.4.2.0
default-language: Haskell2010
test-suite scarlet-test
test-module: PostTest
type: detailed-0.9
build-depends: scarlet,
base >= 4.8.0.0,
cabal-test-hunit >= 0.2,
Cabal >= 1.22.4.0,
containers >= 0.5.6.2,
HUnit >= 1.3.0.0,
HTTP >= 4000.2.20,
network-uri >= 2.6.0.3,
pandoc >= 1.15.0.6,
parsec >= 3.1.9
hs-source-dirs: test
default-language: Haskell2010
executable scarlet-post
main-is: src/Scarlet/Post.hs
ghc-options: -optl-static -optl-pthread
other-extensions: EmptyDataDecls,
FlexibleContexts,
GADTs,
GeneralizedNewtypeDeriving,
MultiParamTypeClasses,
OverloadedStrings,
QuasiQuotes,
TemplateHaskell,
TypeFamilies
build-depends: base >= 4.8.0.0,
bytestring >= 0.10.6.0,
containers >= 0.5.6.2,
Cabal >= 1.22.4.0,
monad-logger >= 0.3.13.2,
mime-types >= 0.1.0.6,
parsec >= 3.1.9,
persistent >= 2.2,
persistent-sqlite >= 2.2,
persistent-template >= 2.1.3.6,
scarlet,
time >= 1.5.0.1,
text >= 1.2.1.3,
transformers >= 0.4.2.0
default-language: Haskell2010