-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhappstack-foundation.cabal
61 lines (59 loc) · 2.61 KB
/
happstack-foundation.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
Name: happstack-foundation
Version: 0.5.9.3
Synopsis: Glue code for using Happstack with acid-state, web-routes, reform, and HSP
Description: happstack-foundation is a library which builds on top of existing components
to provide a powerful and type-safe environment for web development. It uses:
.
happstack-server for the underlying HTTP support
.
HSP for HTML templates
.
web-routes for type-safe URL routing
.
reform for type-safe form generation and validation
.
acid-state for persistent data storage
Homepage: http://www.happstack.com/
License: BSD3
License-file: LICENSE
Author: Jeremy Shaw
Maintainer: jeremy@n-heptane.com
Category: Happstack
Build-type: Simple
Cabal-version: >=1.10
Data-Files:
examples/ControlV/ControlV.cabal
examples/ControlV/LICENSE
examples/ControlV/style.css
examples/ControlV/Setup.hs
examples/ControlV/Main.hs
examples/ControlVAuth/LICENSE
examples/ControlVAuth/style.css
examples/ControlVAuth/ControlVAuth.cabal
examples/ControlVAuth/Setup.hs
examples/ControlVAuth/Main.hs
tested-with: GHC==8.0.2, GHC==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.4, GHC==8.10.7, GHC==9.0.2, GHC==9.2.2
source-repository head
type: git
location: https://github.com/Happstack/happstack-foundation.git
Library
Default-language: Haskell2010
Exposed-modules: Happstack.Foundation
Build-Depends:
base < 5,
acid-state >= 0.7 && < 0.17,
happstack-hsp == 7.3.*,
happstack-server >= 7.0 && < 7.8,
hsp >= 0.9 && < 0.11,
lifted-base >= 0.1 && < 0.3,
monad-control >= 0.3 && < 1.1,
mtl >= 2.0 && < 2.3,
reform == 0.2.*,
reform-happstack == 0.2.*,
reform-hsp == 0.2.*,
safecopy >= 0.7 && < 0.11,
text >= 0.11 && < 2.1,
web-routes == 0.27.*,
web-routes-happstack == 0.23.*,
web-routes-hsp == 0.24.*,
web-routes-th == 0.22.*