-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathjsonnet.cabal
156 lines (149 loc) Β· 4.38 KB
/
jsonnet.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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
cabal-version: 2.2
name: jsonnet
version: 0.3.1.1
synopsis: Jsonnet implementaton in pure Haskell
description: Please see the README on GitHub at <https://github.com/moleike/jsonnet-haskell#readme>
homepage: https://github.com/moleike/haskell-jsonnet#readme
bug-reports: https://github.com/moleike/haskell-jsonnet/issues
author: Alexandre Moreno
maintainer: [email protected]
copyright: 2020 Alexandre Moreno
category: Compiler
license: BSD-3-Clause
x-license: BSD-3-Clause OR Apache-2.0
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
CHANGELOG.md
stdlib/std.jsonnet
source-repository head
type: git
location: https://github.com/moleike/haskell-jsonnet
library
exposed-modules:
Language.Jsonnet
, Language.Jsonnet.Error
, Language.Jsonnet.Pretty
, Language.Jsonnet.Parser
, Language.Jsonnet.Parser.SrcSpan
, Language.Jsonnet.Syntax
, Language.Jsonnet.Syntax.Annotated
, Language.Jsonnet.Annotate
, Language.Jsonnet.Common
, Language.Jsonnet.Value
, Language.Jsonnet.Std.Lib
, Language.Jsonnet.Std.TH
, Language.Jsonnet.TH
, Language.Jsonnet.TH.QQ
, Language.Jsonnet.Eval
, Language.Jsonnet.Eval.Monad
, Language.Jsonnet.Core
, Language.Jsonnet.Check
, Language.Jsonnet.Desugar
autogen-modules:
Paths_jsonnet
other-modules:
Paths_jsonnet
hs-source-dirs:
src
build-depends:
aeson >= 1.5.6 && < 2.3,
base >= 4.14.1 && < 5,
bytestring >= 0.10.12 && < 0.12,
containers >= 0.6.2 && < 0.7,
scientific >= 0.3.7 && < 0.4,
hashable >= 1.3.0.0 && < 1.5,
text >= 1.2.4 && < 2.1,
template-haskell >= 2.16.0 && < 2.21,
data-fix >= 0.3.1 && < 0.4,
transformers-compat >= 0.6.6 && < 0.8,
unordered-containers >= 0.2.14 && < 0.3,
mtl >= 2.2.2 && < 2.4,
vector >= 0.12.3 && < 0.14,
prettyprinter >= 1.7.0 && < 1.8,
deriving-compat >= 0.5.10 && < 0.7,
directory >= 1.3.6 && < 1.4,
filepath >= 1.4.2 && < 1.5,
exceptions >= 0.10.4 && < 0.11,
lens >= 5.0.1 && < 5.3,
semigroupoids >= 5.3.5 && < 6.1,
megaparsec >= 9.0.1 && < 9.5,
parser-combinators >= 1.2.1 && < 1.4,
unbound-generics >= 0.4.3 && < 0.5,
th-utilities >= 0.2.4.2,
binary >= 0.8.8 && < 0.9,
th-lift-instances >= 0.1.18 && < 0.2
default-language: Haskell2010
default-extensions:
MultiParamTypeClasses
, FlexibleContexts
, FlexibleInstances
, DeriveGeneric
, LambdaCase
executable hs-jsonnet
main-is: Main.hs
autogen-modules:
Paths_jsonnet
other-modules:
Paths_jsonnet
hs-source-dirs:
app
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
jsonnet,
aeson,
base,
bytestring,
containers,
text,
megaparsec,
mtl,
prettyprinter,
optparse-applicative >= 0.16.1 && < 0.19
default-language: Haskell2010
test-suite jsonnet-test
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Paths_jsonnet
, Language.Jsonnet.Test.Roundtrip
, Language.Jsonnet.Test.Golden
hs-source-dirs:
test
, test/golden
ghc-options: -threaded -rtsopts -with-rtsopts=-N
build-depends:
base
, containers
, prettyprinter
, jsonnet
, mtl
, text
, filepath
, data-fix
, bytestring
, tasty
, tasty-golden
, tasty-expected-failure
, tasty-hunit
, hedgehog
, tasty-hedgehog
default-language: Haskell2010
benchmark jsonnet-bench
main-is: Bench.hs
type: exitcode-stdio-1.0
hs-source-dirs:
benchmarks
build-depends:
base
, tasty-bench
, jsonnet
, bytestring
, text
, prettyprinter
default-language: Haskell2010
if impl(ghc >= 8.10)
ghc-options: "-with-rtsopts=-A32m --nonmoving-gc"
else
ghc-options: "-with-rtsopts=-A32m"