-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcanonical-lf.cabal
144 lines (140 loc) · 2.66 KB
/
canonical-lf.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
name: canonical-lf
version: 0.1
synopsis: Implementation of canonical LF
license: BSD3
license-file: LICENSE
author: Rob Dockins
maintainer: robdockins AT fastmail DOT fm
copyright: 2015
build-type: Simple
cabal-version: >= 1.18
library
hs-source-dirs: src
exposed-modules:
Lang.LF
Lang.LF.ChangeT
Lang.LF.DAG
Lang.LF.Tree
other-modules:
Lang.LF.Internal.Basics
Lang.LF.Internal.Build
Lang.LF.Internal.Hyps
Lang.LF.Internal.Model
Lang.LF.Internal.Print
Lang.LF.Internal.Solve
Lang.LF.Internal.Subst
Lang.LF.Internal.Typecheck
Lang.LF.Internal.View
Lang.LF.Internal.Weak
build-depends:
base >= 4.8 && < 5,
ansi-wl-pprint,
bound >= 1.0.6,
containers,
hashable,
mtl,
text,
transformers
default-language:
Haskell2010
default-extensions:
BangPatterns
ConstraintKinds
DataKinds
GADTs
FlexibleContexts
FlexibleInstances
FunctionalDependencies
ImplicitParams
LambdaCase
MultiParamTypeClasses
PatternGuards
PolyKinds
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TypeFamilies
TypeOperators
ViewPatterns
ghc-options: -Werror -W
executable toyml
hs-source-dirs: toyml
main-is: Main.hs
other-modules:
CPS,
Lexer,
Grammar,
Scope,
Simplify,
Terms,
ToyTC
Build-tools:
happy, alex >= 3.0.5
build-depends:
array,
base >= 4.8 && < 5,
ansi-wl-pprint,
bound >= 1.0.6,
canonical-lf,
containers,
mtl,
text,
transformers
default-language:
Haskell2010
default-extensions:
BangPatterns
ConstraintKinds
DataKinds
GADTs
FlexibleContexts
FlexibleInstances
FunctionalDependencies
ImplicitParams
LambdaCase
MultiParamTypeClasses
OverloadedStrings
PatternGuards
PolyKinds
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TypeFamilies
TypeOperators
ViewPatterns
ghc-options: -Werror -W
executable testlf
hs-source-dirs: .
--main-is: Main.hs
main-is: Extrinsic.hs
build-depends:
base >= 4.8 && < 5,
ansi-wl-pprint,
bound >= 1.0.6,
canonical-lf,
containers,
mtl,
text,
transformers
default-language:
Haskell2010
default-extensions:
BangPatterns
ConstraintKinds
DataKinds
GADTs
FlexibleContexts
FlexibleInstances
FunctionalDependencies
ImplicitParams
LambdaCase
MultiParamTypeClasses
PatternGuards
PolyKinds
RankNTypes
ScopedTypeVariables
StandaloneDeriving
TypeFamilies
TypeOperators
ViewPatterns
ghc-options: -Werror -W