forked from ucsd-progsys/mist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mist.cabal
87 lines (81 loc) · 2.78 KB
/
mist.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
86
87
name: mist
version: 0.1.0.0
synopsis: Small language for experimenting with Liquid Types
license: MIT
license-file: LICENSE
author: Ranjit Jhala
maintainer: [email protected]
category: Language
build-type: Simple
cabal-version: >=1.10
Library
ghc-options: -W -threaded
exposed-modules: Language.Mist.Utils,
Language.Mist.UX,
Language.Mist.Types,
Language.Mist.Parser,
Language.Mist.Checker,
Language.Mist.CGen,
Language.Mist.Config,
Language.Mist.ToFixpoint,
Language.Mist.Names,
Language.Mist.Normalizer,
Language.Mist.Runner
-- other-extensions:
build-depends: array, base,
containers,
-- TODO: just use unordered (Hashable instances)
unordered-containers,
pretty,
cmdargs,
process,
directory,
semigroups,
megaparsec,
parser-combinators,
filepath,
process,
text,
transformers, mtl,
split,
liquid-fixpoint,
deepseq
hs-source-dirs: lib
default-language: Haskell2010
-- build-tools: alex, happy
-- other-modules: Language.Garter.Lexer
Executable mist
default-language: Haskell2010
ghc-options: -W -threaded
main-is: Main.hs
hs-source-dirs: bin
build-depends: base,
directory,
filepath,
cmdargs,
text,
mist
test-suite test
default-language: Haskell98
type: exitcode-stdio-1.0
hs-source-dirs: tests
ghc-options: -threaded
main-is: Main.hs
build-depends: base,
cmdargs,
directory,
filepath,
tasty,
tasty-hunit,
tasty-rerun,
tasty-ant-xml,
text,
megaparsec,
mist,
liquid-fixpoint
other-modules: Tests.Utils,
Tests.Integration.Tests,
Tests.Language.Mist.Names
Tests.Language.Mist.Checker
Tests.Language.Mist.CGen
Tests.SimpleTypes