diff options
Diffstat (limited to 'blazeT.cabal')
-rw-r--r-- | blazeT.cabal | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/blazeT.cabal b/blazeT.cabal new file mode 100644 index 0000000..eb3907e --- /dev/null +++ b/blazeT.cabal | |||
@@ -0,0 +1,100 @@ | |||
1 | Name: blazeT | ||
2 | Version: 0.0.1 | ||
3 | Homepage: | ||
4 | Bug-Reports: http://github.com/johannesgerer/blazeT/issues | ||
5 | License: MIT | ||
6 | License-file: LICENSE | ||
7 | Author: Johannes Gerer | ||
8 | Maintainer: Johannes Gerer <oss@johannesgerer.com> | ||
9 | Homepage: http://johannesgerer.com/blazeT | ||
10 | Stability: Experimental | ||
11 | Category: Text, Data, Web | ||
12 | Synopsis: A true monad (transformer) version of the blaze-markup and blaze-html libraries | ||
13 | Tested-with: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1 | ||
14 | Description: | ||
15 | A true monad (transformer) version of the blaze-markup and blaze-html libraries, implemented as as a very thin wrapper around and strict superset of these libraries. | ||
16 | . | ||
17 | See <https://github.com/johannesgerer/blazeT Readme> on Github. | ||
18 | |||
19 | |||
20 | |||
21 | Build-type: Custom | ||
22 | Cabal-version: >= 1.8 | ||
23 | |||
24 | Extra-source-files: | ||
25 | README.md | ||
26 | src/Util/GenerateHtmlCombinators.hs | ||
27 | src/Util/Sanitize.hs | ||
28 | src/Util/GenerateHtmlTCombinators.hs | ||
29 | |||
30 | Custom-setup | ||
31 | setup-depends: base >= 4.0.0.0 && < 5, Cabal | ||
32 | |||
33 | Library | ||
34 | -- Default-Language: Haskell2010 | ||
35 | Hs-source-dirs: src | ||
36 | Ghc-Options: -Wall | ||
37 | -fsimpl-tick-factor=200 | ||
38 | -- -ddump-simpl-stats | ||
39 | -- -ddump-to-file | ||
40 | Exposed-modules: | ||
41 | Text.BlazeT | ||
42 | Text.BlazeT.Internal | ||
43 | Text.BlazeT.Html | ||
44 | Text.BlazeT.Renderer.Utf8 | ||
45 | Text.BlazeT.Renderer.String | ||
46 | Text.BlazeT.Renderer.Pretty | ||
47 | Text.BlazeT.Renderer.Text | ||
48 | Text.BlazeT.Html4.FrameSet | ||
49 | Text.BlazeT.Html4.Strict | ||
50 | Text.BlazeT.Html4.Transitional | ||
51 | Text.BlazeT.Html5 | ||
52 | Text.BlazeT.XHtml1.FrameSet | ||
53 | Text.BlazeT.XHtml1.Strict | ||
54 | Text.BlazeT.XHtml1.Transitional | ||
55 | Text.BlazeT.XHtml5 | ||
56 | Text.BlazeT.Html4.FrameSet.Attributes | ||
57 | Text.BlazeT.Html4.Strict.Attributes | ||
58 | Text.BlazeT.Html4.Transitional.Attributes | ||
59 | Text.BlazeT.Html5.Attributes | ||
60 | Text.BlazeT.XHtml1.FrameSet.Attributes | ||
61 | Text.BlazeT.XHtml1.Strict.Attributes | ||
62 | Text.BlazeT.XHtml1.Transitional.Attributes | ||
63 | Text.BlazeT.XHtml5.Attributes | ||
64 | |||
65 | Build-depends: | ||
66 | base >= 4.0.0.0 && < 5 | ||
67 | ,blaze-markup >= 0.6.0.0 | ||
68 | ,blaze-html >= 0.6.0.0 | ||
69 | ,blaze-builder >= 0.2 | ||
70 | ,text | ||
71 | ,bytestring | ||
72 | ,mtl | ||
73 | ,transformers | ||
74 | |||
75 | -- Test-suite blaze-markup-tests | ||
76 | -- Type: exitcode-stdio-1.0 | ||
77 | -- Hs-source-dirs: src tests | ||
78 | -- Main-is: TestSuite.hs | ||
79 | -- Ghc-options: -Wall | ||
80 | |||
81 | -- Other-modules: | ||
82 | -- Text.Blaze.Tests | ||
83 | -- Text.Blaze.Tests.Util | ||
84 | |||
85 | -- Build-depends: | ||
86 | -- HUnit >= 1.2 && < 1.3, | ||
87 | -- QuickCheck >= 2.4 && < 2.8, | ||
88 | -- containers >= 0.3 && < 0.6, | ||
89 | -- test-framework >= 0.4 && < 0.9, | ||
90 | -- test-framework-hunit >= 0.3 && < 0.4, | ||
91 | -- test-framework-quickcheck2 >= 0.3 && < 0.4, | ||
92 | -- -- Copied from regular dependencies... | ||
93 | -- base >= 4 && < 5, | ||
94 | -- blaze-builder >= 0.2 && < 0.4, | ||
95 | -- text >= 0.10 && < 1.2, | ||
96 | -- bytestring >= 0.9 && < 0.11 | ||
97 | |||
98 | Source-repository head | ||
99 | Type: git | ||
100 | Location: http://github.com/johannesgerer/blazeT \ No newline at end of file | ||