-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
50 lines (45 loc) · 1010 Bytes
/
package.yaml
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
name: topoi
version: 0.1.0.0
bug-reports: https://github.com/topoi-lang/topoi/issues
license: MIT
license-file: LICENSE
author: Topoi team
maintainer: [email protected]
copyright: Copyright (c) 2020, Topoi-lang
category: Compiler, Language
extra-source-files: README.md
tested-with: GHC == 8.8.4
dependencies:
- base >= 4.7 && < 5
- bytestring
- containers
- lexer-applicative
- megaparsec
- mtl
- parser-combinators
- regex-applicative
- srcloc
- text
- unordered-containers
executables:
topoi:
source-dirs:
src
main: Terminal/Main.hs
exposed_modules:
Parse.Lexer
Parse.TokenStream
Parse.Topoi
Parse.Utils
Reporting.Annotation
Reporting.Error
Syntax.Abstract
Syntax.Concrete
Type.Error
ghc-options:
- -Wall
- -Wextra
- -threaded
- -rtsopts
- -with-rtsopts=-N
- -funbox-strict-fields