-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaison.cabal
139 lines (134 loc) · 4.74 KB
/
maison.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
-- Initial maison.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: maison
version: 0.1.0.0
synopsis: Personal web server
-- description:
license: AllRightsReserved
license-file: LICENSE
author: Dave Hinton
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Http
, Http.InMemory
, DefMap
other-modules: Http.Auth
, Http.Entity
, Http.Resource
, Http.Sites
, Http.Uri
-- other-extensions:
build-depends: attoparsec == 0.12.*
, base
, base64-bytestring == 1.0.*
, blaze-builder == 0.3.*
, blaze-html == 0.7.*
, bytestring
, conduit == 1.1.*
, containers
, either == 4.3.*
, errors == 1.4.*
, exceptions == 0.6.*
, http-types == 0.8.*
, lens == 4.4.*
, mtl == 2.1.*
, network == 2.5.*
, semigroups == 0.15.*
, text == 1.1.*
, transformers
, wai == 3.0.*
hs-source-dirs: src
default-language: Haskell2010
default-extensions: OverloadedStrings
, TemplateHaskell
, RecordWildCards
, DeriveFunctor
, GeneralizedNewtypeDeriving
, LambdaCase
, RankNTypes
GHC-Options: -Wall -Werror -fno-warn-orphans
executable maison
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: maison
, async == 2.0.*
, base
, blaze-html == 0.7.*
, bytestring
, case-insensitive == 1.2.*
, conduit == 1.1.*
, conduit-extra == 1.1.*
, containers
, directory
, dns == 1.4.*
, errors == 1.4.*
, exceptions == 0.6.*
, filepath
, hledger-lib == 0.23.*
, hslogger == 1.2.*
, lens == 4.4.*
, network == 2.5.*
, old-locale
, pandoc == 1.13.*
, semigroups == 0.15.*
, text == 1.1.*
, time
, unix
, warp == 3.0.*
, yaml == 0.8.*
hs-source-dirs: maison
default-language: Haskell2010
default-extensions: TemplateHaskell
, RecordWildCards
, OverloadedStrings
, LambdaCase
, RankNTypes
GHC-Options: -Wall -Werror -rtsopts -with-rtsopts=-T -threaded
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: maison
, base
, blaze-html == 0.7.*
, bytestring
, hslogger == 1.2.*
, lens == 4.4.*
, old-locale
, template-haskell
, text == 1.1.*
, time
, unix
, warp == 3.0.*
hs-source-dirs: chateau
default-language: Haskell2010
default-extensions: RecordWildCards
, OverloadedStrings
, TemplateHaskell
GHC-Options: -Wall -Werror -rtsopts -with-rtsopts=-T -threaded
test-suite tests
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: maison
, base
, bytestring
, http-types
, HUnit
, lens
, QuickCheck == 2.*
, quickcheck-io
, test-framework
, test-framework-quickcheck2
, test-framework-th
, text
, wai
, wai-extra
hs-source-dirs: tests
default-language: Haskell2010
default-extensions: TemplateHaskell, OverloadedStrings
GHC-Options: -Wall -Werror