-
Notifications
You must be signed in to change notification settings - Fork 9
/
hyperbole.cabal
139 lines (134 loc) · 3.57 KB
/
hyperbole.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
cabal-version: 2.2
-- This file has been generated from package.yaml by hpack version 0.37.0.
--
-- see: https://github.com/sol/hpack
name: hyperbole
version: 0.4.2
synopsis: Interactive HTML apps using type-safe serverside Haskell
description: Interactive serverside web framework Inspired by HTMX, Elm, and Phoenix LiveView
category: Web, Network
homepage: https://github.com/seanhess/hyperbole
bug-reports: https://github.com/seanhess/hyperbole/issues
author: Sean Hess
maintainer: seanhess@gmail.com
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with:
GHC == 9.8.2
, GHC == 9.6.6
extra-source-files:
client/dist/hyperbole.js
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/seanhess/hyperbole
library
exposed-modules:
Web.Hyperbole
Web.Hyperbole.Application
Web.Hyperbole.Effect.Event
Web.Hyperbole.Effect.Handler
Web.Hyperbole.Effect.Hyperbole
Web.Hyperbole.Effect.QueryData
Web.Hyperbole.Effect.Request
Web.Hyperbole.Effect.Respond
Web.Hyperbole.Effect.Server
Web.Hyperbole.Effect.Session
Web.Hyperbole.HyperView
Web.Hyperbole.Page
Web.Hyperbole.Route
Web.Hyperbole.TypeList
Web.Hyperbole.View
Web.Hyperbole.View.Element
Web.Hyperbole.View.Embed
Web.Hyperbole.View.Event
Web.Hyperbole.View.Forms
other-modules:
Paths_hyperbole
autogen-modules:
Paths_hyperbole
hs-source-dirs:
src
default-extensions:
OverloadedStrings
OverloadedRecordDot
DuplicateRecordFields
NoFieldSelectors
TypeFamilies
DataKinds
DerivingStrategies
DeriveAnyClass
ghc-options: -Wall -fdefer-typed-holes
build-depends:
base >=4.16 && <5
, bytestring >=0.11 && <0.13
, casing >0.1 && <0.2
, containers >=0.6 && <1
, cookie ==0.4.*
, effectful >=2.4 && <3
, file-embed >=0.0.10 && <0.1
, http-api-data ==0.6.*
, http-types ==0.12.*
, network >=3.1 && <4
, string-conversions ==0.4.*
, string-interpolate ==0.3.*
, text >=1.2 && <3
, time
, wai >=3.2 && <4
, wai-websockets >=3.0 && <4
, warp >=3.3 && <4
, web-view >=0.6.2 && <=1.0
, websockets >=0.12 && <0.14
default-language: GHC2021
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Test.FormSpec
Test.RouteSpec
Test.ViewActionSpec
Test.ViewIdSpec
Paths_hyperbole
autogen-modules:
Paths_hyperbole
hs-source-dirs:
test/
default-extensions:
OverloadedStrings
OverloadedRecordDot
DuplicateRecordFields
NoFieldSelectors
TypeFamilies
DataKinds
DerivingStrategies
DeriveAnyClass
ghc-options: -Wall -fdefer-typed-holes -threaded -rtsopts -with-rtsopts=-N -F -pgmF=skeletest-preprocessor
build-tool-depends:
skeletest:skeletest-preprocessor
build-depends:
Diff >=0.5 && <1.0
, base >=4.16 && <5
, bytestring >=0.11 && <0.13
, casing >0.1 && <0.2
, containers >=0.6 && <1
, cookie ==0.4.*
, effectful >=2.4 && <3
, file-embed >=0.0.10 && <0.1
, http-api-data ==0.6.*
, http-types ==0.12.*
, hyperbole
, network >=3.1 && <4
, skeletest
, string-conversions ==0.4.*
, string-interpolate ==0.3.*
, text >=1.2 && <3
, time
, wai >=3.2 && <4
, wai-websockets >=3.0 && <4
, warp >=3.3 && <4
, web-view >=0.6.2 && <=1.0
, websockets >=0.12 && <0.14
default-language: GHC2021