-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathcodeworld-error-sanitizer.cabal
More file actions
53 lines (47 loc) · 1.45 KB
/
codeworld-error-sanitizer.cabal
File metadata and controls
53 lines (47 loc) · 1.45 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
Name: codeworld-error-sanitizer
Version: 0.1.0.0
Synopsis: Error Sanitizer for CodeWorld Compiler
License: Apache-2.0
License-file: LICENSE
Author: Chris Smith
Maintainer: cdsmith@gmail.com
Copyright: (c) 2020, The CodeWorld Authors
Build-type: Simple
Cabal-version: >=1.10
Description:
Regex based error filter library for CodeWorld compiler.
Library
Hs-source-dirs: src
Exposed-modules: ErrorSanitizer
Other-modules: RegexShim
Build-depends: base,
text
if impl(ghcjs)
Build-depends: ghcjs-base,
ghcjs-prim
else
Build-depends: array,
regex-base,
regex-tdfa
Default-language: Haskell2010
Exposed: True
Test-suite unit-tests
Type: exitcode-stdio-1.0
Main-is: Main.hs
Hs-source-dirs: test,
src
Other-modules: ErrorSanitizer,
RegexShim
build-depends: base,
HUnit,
test-framework,
test-framework-hunit,
text
if impl(ghcjs)
Build-depends: ghcjs-base,
ghcjs-prim
else
Build-depends: array,
regex-base,
regex-tdfa
Default-language: Haskell2010