-
Notifications
You must be signed in to change notification settings - Fork 6
/
hyperbole.cabal
132 lines (127 loc) · 3.4 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
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.1
synopsis: Interactive HTML apps using type-safe serverside Haskell
description: Interactive HTML applications using type-safe serverside Haskell. 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:
Simple
Web.Hyperbole
Web.Hyperbole.Application
Web.Hyperbole.Effect.Hyperbole
Web.Hyperbole.Effect.Server
Web.Hyperbole.Embed
Web.Hyperbole.Forms
Web.Hyperbole.Handler
Web.Hyperbole.Handler.TypeList
Web.Hyperbole.HyperView
Web.Hyperbole.Route
Web.Hyperbole.Session
Web.Hyperbole.View
Web.Hyperbole.View.Element
Web.Hyperbole.View.Event
Web.Hyperbole.View.Target
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
, wai >=3.2 && <4
, wai-websockets >=3.0 && <4
, warp >=3.3 && <4
, web-view >=0.4 && <=0.6
, websockets >=0.12 && <0.14
default-language: GHC2021
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
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:
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
, wai >=3.2 && <4
, wai-websockets >=3.0 && <4
, warp >=3.3 && <4
, web-view >=0.4 && <=0.6
, websockets >=0.12 && <0.14
default-language: GHC2021