This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
forked from stackbuilders/stache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstache-plus.cabal
110 lines (105 loc) · 3.91 KB
/
stache-plus.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
name: stache-plus
version: 0.1.0.0
license: BSD3
license-file: LICENSE.md
author: Mark Karpov <[email protected]>,
Artyom <[email protected]>
maintainer: Artyom <[email protected]>
homepage: https://github.com/aelve/stache-plus
bug-reports: https://github.com/aelve/stache-plus/issues
category: Text
synopsis: Mustache templates with some additions
description:
Mustache templates with some additions.
.
Forked from <https://hackage.haskell.org/package/stache stache>.
build-type: Simple
cabal-version: >= 1.10
tested-with:
GHC ==8.4.4
GHC ==8.6.4
extra-doc-files:
CHANGELOG.md
data-files:
bench-data/*.mustache
specs/*.yml
templates/*.mustache
source-repository head
type: git
location: https://github.com/aelve/stache-plus.git
library
build-depends: aeson >= 0.11 && < 1.5
, base >= 4.7 && < 5
, bytestring >= 0.10 && < 0.11
, containers >= 0.5 && < 0.7
, deepseq >= 1.4 && < 1.5
, directory >= 1.2 && < 1.4
, dlist
, exceptions >= 0.8 && < 0.11
, filepath >= 1.2 && < 1.5
, megaparsec == 6.*
, mtl >= 2.1 && < 3.0
, scientific
, template-haskell >= 2.11 && < 2.15
, text >= 1.2 && < 1.3
, unordered-containers >= 0.2.5 && < 0.3
, vector >= 0.11 && < 0.13
exposed-modules: Text.Mustache.Plus
Text.Mustache.Plus.Compile
Text.Mustache.Plus.Compile.TH
Text.Mustache.Plus.Parser
Text.Mustache.Plus.Render
Text.Mustache.Plus.Type
ghc-options: -Wall -fno-warn-unused-do-bind
-fsimpl-tick-factor=1000
default-language: Haskell2010
hs-source-dirs: lib
test-suite tests
main-is: Spec.hs
hs-source-dirs: tests
type: exitcode-stdio-1.0
build-depends: aeson
, base
, containers
, hspec >= 2.0 && < 3.0
, hspec-megaparsec == 1.*
, megaparsec
, stache-plus
, text
other-modules: Text.Mustache.Plus.Compile.THSpec
Text.Mustache.Plus.ParserSpec
Text.Mustache.Plus.RenderSpec
Text.Mustache.Plus.TypeSpec
if !impl(ghc >= 8.0)
build-depends: semigroups
ghc-options: -Wall -fno-warn-unused-do-bind
default-language: Haskell2010
test-suite mustache-spec
main-is: Spec.hs
hs-source-dirs: mustache-spec
type: exitcode-stdio-1.0
build-depends: aeson
, base
, bytestring
, containers
, file-embed
, hspec >= 2.0 && < 3.0
, megaparsec
, stache-plus
, text
, yaml >= 0.8 && < 0.9
ghc-options: -Wall -fno-warn-unused-do-bind
default-language: Haskell2010
benchmark bench
main-is: Main.hs
hs-source-dirs: bench
type: exitcode-stdio-1.0
build-depends: aeson
, base
, criterion >= 0.6.2.1 && < 1.2
, deepseq
, megaparsec
, stache-plus
, text
ghc-options: -Wall -fno-warn-unused-do-bind
default-language: Haskell2010