-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmini-core.cabal
38 lines (35 loc) · 1.43 KB
/
mini-core.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
-- Initial mini-core.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: mini-core
version: 0.1.0.0
synopsis: An implementation of the core language described in "Implementing Functional Languages: A Tutorial" by Simon Peyton Jones and David Lester
-- description:
license: MIT
license-file: LICENSE
author: Christopher D. Parks
maintainer: [email protected]
-- copyright:
category: Language
build-type: Simple
cabal-version: >=1.8
executable mini-core
build-depends: base
, pretty
, parsec
, containers
, mtl
hs-source-dirs: src
main-is: Main.hs
other-modules: MiniCore.Format
MiniCore.GCompiler
MiniCore.GMachine
MiniCore.Heap
MiniCore.Inference
MiniCore.Parse
MiniCore.Transforms
MiniCore.Transforms.BinOps
MiniCore.Transforms.Constructors
MiniCore.Transforms.Lambdas
MiniCore.Transforms.StronglyConnectedComponents
MiniCore.Transforms.Utils
MiniCore.Types