-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFunFlow.cabal
More file actions
39 lines (34 loc) · 958 Bytes
/
FunFlow.cabal
File metadata and controls
39 lines (34 loc) · 958 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
name : FunFlow
version : 0.0.0.1
synopsis : Control-flow analysis of a simple functional programming language.
license : MIT
category : Language
build-type : Simple
cabal-version : >= 1.8
library
other-modules: Infer,
Expr,
Type,
Parsing,
Examples
exposed-modules : FunFlow
build-depends : base,
uu-parsinglib,
monad-supply,
mtl,
errors,
transformers,
containers,
bound,
prelude-extras,
ansi-wl-pprint,
monad-gen,
bifunctors,
recursion-schemes,
free
hs-source-dirs : src
executable funflow
main-is: Main.hs
hs-source-dirs: exec
build-depends: base,
FunFlow