-
Notifications
You must be signed in to change notification settings - Fork 8
/
turbinado.cabal
executable file
·143 lines (140 loc) · 5.2 KB
/
turbinado.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
140
141
142
Name: turbinado
Version: 0.7
Synopsis: Haskell web application server
Description: The Haskell web application server
License: BSD3
License-file: LICENSE
Author: Alson Kemp
Maintainer: Alson Kemp ([email protected])
Homepage: http://www.turbinado.org
Build-Type: Simple
Cabal-Version: >= 1.6
Executable turbinado
Main-is: Turbinado/Main.hs
ghc-options: -threaded
Build-Depends: base >= 4,
containers,
Crypto > 4.1.0,
dataenc,
directory,
fastcgi,
filepath,
HDBC >= 2,
HDBC-odbc >= 2,
HDBC-postgresql >= 2,
hslogger,
HTTP >= 4000,
mtl,
network,
old-locale,
old-time,
plugins >= 1.4,
parsec,
pretty,
regex-compat,
time,
bytestring >= 0.9.1.4,
mime >= 0.3.0,
xhtml
Extensions: MultiParamTypeClasses,
FunctionalDependencies,
TypeFamilies,
RankNTypes,
PolymorphicComponents,
ExistentialQuantification,
FlexibleContexts,
FlexibleInstances,
EmptyDataDecls,
CPP,
TypeSynonymInstances,
PatternGuards,
MultiParamTypeClasses,
ScopedTypeVariables,
UndecidableInstances
-- Creating a Library mostly in order to make documentation.
Library
Build-Depends: base >= 4,
containers,
Crypto > 4.1.0,
dataenc,
directory,
filepath,
HDBC >= 2,
HDBC-postgresql >= 2,
hslogger,
HTTP >= 4000,
mtl,
network,
old-locale,
old-time,
plugins >= 1.4,
parsec,
pretty,
regex-compat,
time,
bytestring >= 0.9.1.4,
mime >= 0.3.0
Extensions: MultiParamTypeClasses,
FunctionalDependencies,
TypeFamilies,
RankNTypes,
PolymorphicComponents,
ExistentialQuantification,
FlexibleContexts,
FlexibleInstances,
EmptyDataDecls,
CPP,
TypeSynonymInstances,
OverlappingInstances,
UndecidableInstances,
PatternGuards,
MultiParamTypeClasses,
ScopedTypeVariables,
DeriveDataTypeable
Exposed-Modules: Turbinado.Controller
Turbinado.Controller.Exception
Turbinado.Controller.Monad
Turbinado.Controller.Routes
Turbinado.Database.ORM.Common
Turbinado.Database.ORM.Generator
Turbinado.Database.ORM.Types
Turbinado.Database.ORM.Adapters.Common
Turbinado.Database.ORM.Adapters.PostgreSQL
Turbinado.Database.ORM.Adapters.MySQL
Turbinado.Database.ORM.Adapters.Types
Turbinado.Environment.CodeStore
Turbinado.Environment.Cookie
Turbinado.Environment.Database
Turbinado.Environment.Files
Turbinado.Environment.Header
Turbinado.Environment.Logger
Turbinado.Environment.MimeTypes
Turbinado.Environment.Params
Turbinado.Environment.Request
Turbinado.Environment.Response
Turbinado.Environment.Routes
Turbinado.Environment.Session.CookieSession
Turbinado.Environment.Settings
Turbinado.Environment.Types
Turbinado.Environment.ViewData
Turbinado.Layout
Turbinado.Layout.Helpers
Turbinado.Layout.Helpers.Misc
Turbinado.Layout.Helpers.Tags
Turbinado.Server
Turbinado.Server.ErrorHandler
Turbinado.Server.Exception
Turbinado.Server.Network
Turbinado.Server.RequestProcess
Turbinado.Server.StandardResponse
Turbinado.Server.StaticContent
Turbinado.Utility.Data
Turbinado.Utility.General
Turbinado.Utility.Naming
Turbinado.View
Turbinado.View.Exception
Turbinado.View.HTML
Turbinado.View.Helpers
Turbinado.View.Helpers.Misc
Turbinado.View.Helpers.Tags
Turbinado.View.Monad