-
Notifications
You must be signed in to change notification settings - Fork 0
/
recording.cabal
85 lines (78 loc) · 1.88 KB
/
recording.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
cabal-version: 3.0
name: recording
version: 1.1.0.0
license-file: LICENSE
maintainer: educorreia932@gmail.com
author: Eduardo Correia
category: Language development
build-type: Simple
extra-doc-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/Educorreia932/Recording
library
exposed-modules:
Explicit.Terms
Explicit.TypeInference
Explicit.Types
Explicit.Typing
Explicit.Unification
Implementation.Compilation
Implementation.Evaluator
Implementation.Terms
Implicit.Parser
Implicit.Terms
Errors
hs-source-dirs: src
default-language: GHC2021
build-depends:
base ^>=4.18.2.0,
containers,
lens,
megaparsec,
mtl,
ordered-containers,
split
executable recording
main-is: Main.hs
hs-source-dirs: src
other-modules:
Explicit.Terms
Explicit.TypeInference
Explicit.Types
Explicit.Typing
Explicit.Unification
Implementation.Compilation
Implementation.Evaluator
Implementation.Terms
Implicit.Parser
Implicit.Terms
Errors
Repl
default-language: GHC2021
ghc-options: -Wall
build-depends:
base ^>=4.18.2.0,
containers,
lens,
megaparsec,
mtl,
ordered-containers,
repline,
split
test-suite recording-test
type: exitcode-stdio-1.0
main-is: Tests.hs
hs-source-dirs: tests
other-modules:
CompilationTest
EvaluatorTest
ParserTest
TypeInferenceTest
default-language: GHC2021
build-depends:
base ^>=4.18.2.0,
containers,
HUnit ^>=1.6,
recording,
ordered-containers