-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplzwrk.cabal
89 lines (83 loc) · 2.34 KB
/
plzwrk.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
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.31.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 8099ceb0d406f862d89306de053aba4c75999a9e0d74ac6a502458d503e7dcc1
name: plzwrk
version: 0.0.0.9
category: Web
synopsis: A front-end framework
description: Please see the README on GitHub at <https://github.com/meeshkan/plzwrk#readme>
homepage: https://github.com/meeshkan/plzwrk#readme
bug-reports: https://github.com/meeshkan/plzwrk/issues
author: Mike Solomon
maintainer: [email protected]
copyright: 2020 Mike Solomon
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/meeshkan/plzwrk
flag plzwrk-enable-asterius
Description: Enable asterius
Default: False
Manual: True
library
exposed-modules:
Web.Framework.Plzwrk
, Web.Framework.Plzwrk.Asterius
, Web.Framework.Plzwrk.MockJSVal
, Web.Framework.Plzwrk.Tag
other-modules:
Paths_plzwrk
, Web.Framework.Plzwrk.Base
, Web.Framework.Plzwrk.JSEnv
, Web.Framework.Plzwrk.Domify
, Web.Framework.Plzwrk.Util
, Web.Framework.Plzwrk.TH.PWX
, Web.Framework.Plzwrk.TH.QuotePWX
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, aeson >= 1.4.7 && < 1.5
, bytestring >= 0.10.10 && < 0.11
, containers >= 0.6.2 && < 0.7
, hashable >= 1.3.0 && < 1.4
, haskell-src-meta >= 0.8.5 && < 0.9
, mtl >= 2.2.2 && < 2.3
, parsec >= 3.1.14 && < 3.2
, split >= 0.2.3 && < 0.3
, template-haskell >= 2.14.0 && < 2.16
, text >= 1.2.3 && < 1.3
, transformers >= 0.5.6 && < 0.6
, unordered-containers >= 0.2.10 && < 0.3
default-language: Haskell2010
if flag(plzwrk-enable-asterius)
cpp-options:
-DPLZWRK_ENABLE_ASTERIUS
build-depends:
asterius-prelude
test-suite plzwrk-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
DOMSpec
, PWXSpec
, Paths_plzwrk
hs-source-dirs:
test
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base >=4.7 && <5
, hspec >=2.7.0 && <2.7.2
, mtl >=2.2.2 && <2.3
, plzwrk
, text >=1.2.3 && <1.3
, unordered-containers >=0.2.10 && <0.3
default-language: Haskell2010