-
Notifications
You must be signed in to change notification settings - Fork 197
Expand file tree
/
Copy pathcodeworld-compiler.cabal
More file actions
90 lines (80 loc) · 1.85 KB
/
codeworld-compiler.cabal
File metadata and controls
90 lines (80 loc) · 1.85 KB
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
Name: codeworld-compiler
Version: 0.1.0.0
Synopsis: GHCJS based standalone compiler for CodeWorld
License: Apache-2.0
License-file: LICENSE
Author: The CodeWorld Authors
Maintainer: Chris Smith <cdsmith@gmail.com>
Copyright: (c) 2019, The CodeWorld Authors
Build-type: Simple
Cabal-version: >=1.10
Description:
The GHCJS based standalone compiler for CodeWorld programming environment.
Executable codeworld-compiler
Hs-source-dirs: exec
Main-is: Main.hs
Build-depends:
base,
codeworld-compiler,
directory,
filepath,
optparse-applicative,
temporary,
text
Library
Exposed-modules:
CodeWorld.Compile,
CodeWorld.Compile.Base
Other-modules:
CodeWorld.Compile.Framework
CodeWorld.Compile.Requirements
CodeWorld.Compile.Requirements.Eval
CodeWorld.Compile.Requirements.Language
CodeWorld.Compile.Requirements.LegacyLanguage
CodeWorld.Compile.Requirements.Matcher
CodeWorld.Compile.Requirements.Types
CodeWorld.Compile.Stages
Build-depends:
aeson >= 1.1,
array,
base,
base64-bytestring,
bytestring,
codeworld-error-sanitizer,
containers,
cryptonite,
data-default,
directory,
exceptions,
filepath,
ghc-lib-parser < 8.8,
hashable,
haskell-src-exts >= 1.20,
megaparsec,
memory,
mtl,
process,
regex-tdfa,
regex-tdfa-text,
split,
syb,
temporary,
text,
yaml,
zlib
Hs-source-dirs: src
Exposed: True
Test-Suite codeworld-compiler-test
Type: exitcode-stdio-1.0
Main-is: Main.hs
Hs-source-dirs: test
Build-depends:
base,
codeworld-compiler,
containers,
directory,
filepath,
HUnit,
temporary,
test-framework,
test-framework-hunit