-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathteenytt.cabal
223 lines (215 loc) · 6.08 KB
/
teenytt.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
cabal-version: 3.4
name: teenytt
version: 0.1.0.0
synopsis: A small, didactic proof assistant
-- A longer description of the package.
-- description:
-- A URL where users can report bugs.
-- bug-reports:
-- The license under which the package is released.
-- license:
author: Reed Mullanix
maintainer: [email protected]
-- A copyright notice.
copyright: 2022 Reed Mullanix
-- copyright:
-- category:
extra-source-files:
README.org
CHANGELOG.org
library
exposed-modules:
-- Base
TeenyTT.Base.ByteString
TeenyTT.Base.Diagnostic
TeenyTT.Base.Env
TeenyTT.Base.Ident
TeenyTT.Base.Location
TeenyTT.Base.Prec
TeenyTT.Base.Pretty
TeenyTT.Base.SymbolTable
-- Core
TeenyTT.Core.Conversion
TeenyTT.Core.Domain
TeenyTT.Core.Eval
TeenyTT.Core.NbE
TeenyTT.Core.Quote
TeenyTT.Core.Splice
TeenyTT.Core.Syntax
TeenyTT.Core.TermBuilder
TeenyTT.Core.Types
-- Elaborator
TeenyTT.Elaborator.ConcreteSyntax
TeenyTT.Elaborator.Macros
TeenyTT.Elaborator.Monad
TeenyTT.Elaborator.Refiner
TeenyTT.Elaborator.Refiner.Nat
TeenyTT.Elaborator.Refiner.Pi
TeenyTT.Elaborator.Refiner.Sigma
TeenyTT.Elaborator.Refiner.Structural
TeenyTT.Elaborator.Refiner.Univ
TeenyTT.Elaborator.Tactic
-- Frontend
TeenyTT.Frontend.Command
TeenyTT.Frontend.Driver
TeenyTT.Frontend.Driver.Monad
TeenyTT.Frontend.Parser
TeenyTT.Frontend.Parser.Lexer
TeenyTT.Frontend.Parser.Grammar
TeenyTT.Frontend.Parser.Monad
TeenyTT.Frontend.Parser.Token
hs-source-dirs: src
ghc-options:
-- Note that -Wall doesn't enable /all/ warnings
-- See https://ghc.gitlab.haskell.org/ghc/doc/users_guide/using-warnings.html
-- for a list of all warnings and their descriptions.
-fno-show-valid-hole-fits
-Wall
-Wno-unused-top-binds
-Wno-unused-matches
-- In general, it's good practice to specify /how/ we are deriving something.
-Wmissing-deriving-strategies
-Wunticked-promoted-constructors
-Wmissing-export-lists
-Wmissed-specialisations
default-extensions:
-- Syntactic Extensions
BlockArguments
ImportQualifiedPost
LambdaCase
OverloadedStrings
-- Deriving Extensions
-- Note that we use -Wmissing-deriving-strategies, so any deriving clause
-- must have a strategy attached.
DeriveAnyClass
DeriveFoldable
DeriveFunctor
DeriveTraversable
DeriveGeneric
DerivingStrategies
DerivingVia
GeneralizedNewtypeDeriving
StandaloneDeriving
-- Record Extensions
DuplicateRecordFields
NoFieldSelectors
NamedFieldPuns
OverloadedRecordDot
RecordWildCards
-- Pattern Extensions
ViewPatterns
-- Strictness Extensions
BangPatterns
StrictData
-- Typeclass Extensions
FlexibleContexts
FlexibleInstances
-- Typesystem Extensions
RankNTypes
ScopedTypeVariables
build-depends:
array >= 0.5
, base >=4.16 && <5
, bytestring >= 0.11
, deepseq >= 1.4
, primitive >= 0.7
, hashable >= 1.4
, mtl >= 2.3
, prettyprinter >= 1.7
-- We want to use the UTF-8 encoding
, text >= 2.0
, transformers >= 0.6
, utf8-string
build-tool-depends:
alex:alex >= 3.2
, happy:happy >= 1.2
default-language: Haskell2010
executable teenytt
main-is: Main.hs
default-extensions:
-- Syntactic Extensions
BlockArguments
ImportQualifiedPost
LambdaCase
OverloadedStrings
-- Deriving Extensions
-- Note that we use -Wmissing-deriving-strategies, so any deriving clause
-- must have a strategy attached.
DeriveAnyClass
DeriveFoldable
DeriveFunctor
DeriveTraversable
DeriveGeneric
DerivingStrategies
DerivingVia
GeneralizedNewtypeDeriving
StandaloneDeriving
-- Record Extensions
DuplicateRecordFields
NoFieldSelectors
NamedFieldPuns
OverloadedRecordDot
RecordWildCards
-- Pattern Extensions
ViewPatterns
-- Strictness Extensions
StrictData
-- Typeclass Extensions
FlexibleContexts
FlexibleInstances
-- Typesystem Extensions
ScopedTypeVariables
build-depends:
base >=4.16 && <5
, optparse-applicative >= 0.17
, teenytt
hs-source-dirs: app
default-language: Haskell2010
test-suite teenytt-test
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
other-modules:
Spec.TeenyTT.Base.SymbolTable
default-extensions:
-- Syntactic Extensions
BlockArguments
ImportQualifiedPost
LambdaCase
OverloadedStrings
-- Deriving Extensions
-- Note that we use -Wmissing-deriving-strategies, so any deriving clause
-- must have a strategy attached.
DeriveAnyClass
DeriveFoldable
DeriveFunctor
DeriveTraversable
DeriveGeneric
DerivingStrategies
DerivingVia
GeneralizedNewtypeDeriving
StandaloneDeriving
-- Record Extensions
DuplicateRecordFields
NoFieldSelectors
NamedFieldPuns
OverloadedRecordDot
RecordWildCards
-- Pattern Extensions
ViewPatterns
-- Strictness Extensions
StrictData
-- Typeclass Extensions
FlexibleContexts
FlexibleInstances
-- Typesystem Extensions
ScopedTypeVariables
build-depends:
base >=4.16 && <5
, hashable >= 1.4
, hspec >= 2.10
, hedgehog >= 1.1.1
, hspec-hedgehog >= 0.0.1.2
, primitive >= 0.7
, teenytt