-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.yaml
More file actions
53 lines (48 loc) · 871 Bytes
/
package.yaml
File metadata and controls
53 lines (48 loc) · 871 Bytes
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
name: compiler
author: Chris Bacon & Jacob Clark
github: exosphere-lang/compiler
license: MIT
copyright: 2019 Chris Bacon & Jacob Clark
version: 0.1.0.0
extra-source-files:
- README.md
- ChangeLog.md
description: Please see the README on GitHub at <https://github.com/exosphere/compiler#readme>
dependencies:
- base
- aeson
- bytestring
- megaparsec
ghc-options:
- -Wincomplete-patterns
- -Wall
- -O2
executables:
exospherec:
source-dirs: app
main: Main.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- compiler
library:
source-dirs: src
dependencies:
- parsec
- split
- containers
- text
- unordered-containers
tests:
exosphere-test:
source-dirs: test
main: Spec.hs
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- compiler
- hspec