forked from seanhess/web-view
-
Notifications
You must be signed in to change notification settings - Fork 0
/
web-view.cabal
101 lines (96 loc) · 2.61 KB
/
web-view.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
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: web-view
version: 0.6.1
synopsis: Type-safe HTML and CSS with intuitive layouts and composable styles.
description: Type-safe HTML and CSS with intuitive layouts and composable styles. Inspired by Tailwindcss and Elm-UI . See documentation for the @Web.View@ module below
category: Web
homepage: https://github.com/seanhess/web-view
bug-reports: https://github.com/seanhess/web-view/issues
author: Sean Hess
maintainer: [email protected]
license: BSD-3-Clause
license-file: LICENSE
build-type: Simple
tested-with:
GHC == 9.8.2
, GHC == 9.6.6
extra-source-files:
embed/preflight.css
extra-doc-files:
README.md
CHANGELOG.md
source-repository head
type: git
location: https://github.com/seanhess/web-view
library
exposed-modules:
Web.View
Web.View.Element
Web.View.Layout
Web.View.Render
Web.View.Reset
Web.View.Style
Web.View.Types
Web.View.Types.Url
Web.View.View
other-modules:
Paths_web_view
autogen-modules:
Paths_web_view
hs-source-dirs:
src
default-extensions:
OverloadedStrings
OverloadedRecordDot
DuplicateRecordFields
NoFieldSelectors
ghc-options: -Wall -fdefer-typed-holes
build-depends:
base >=4.16 && <5
, bytestring >=0.11 && <0.13
, casing >0.1.3.0 && <0.2
, containers >=0.6 && <1
, effectful-core >=2.3 && <3
, file-embed >=0.0.10 && <0.1
, html-entities >=1.1.4.7 && <1.2
, http-types ==0.12.*
, string-interpolate >=0.3.2 && <0.4
, text >=1.2 && <3
default-language: GHC2021
test-suite test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Test.RenderSpec
Test.StyleSpec
Test.UrlSpec
Test.ViewSpec
Paths_web_view
autogen-modules:
Paths_web_view
hs-source-dirs:
test/
default-extensions:
OverloadedStrings
OverloadedRecordDot
DuplicateRecordFields
NoFieldSelectors
ghc-options: -Wall -fdefer-typed-holes -threaded -rtsopts -with-rtsopts=-N -F -pgmF=skeletest-preprocessor
build-depends:
Diff >=0.5 && <1.0
, base >=4.16 && <5
, bytestring >=0.11 && <0.13
, casing >0.1.3.0 && <0.2
, containers >=0.6 && <1
, effectful-core >=2.3 && <3
, file-embed >=0.0.10 && <0.1
, html-entities >=1.1.4.7 && <1.2
, http-types ==0.12.*
, skeletest
, string-interpolate >=0.3.2 && <0.4
, text >=1.2 && <3
, web-view
default-language: GHC2021