-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdabulang.cabal
40 lines (37 loc) · 1.2 KB
/
dabulang.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
cabal-version: 2.4
name: dabulang
version: 0.1.0.0
synopsis: A simple imperative programming language interpreter
homepage: https://github.com/stickyPiston/dabulang
bug-reports: https://github.com/stickyPiston/dabulang/issues
author: Job Vonk
maintainer: [email protected]
library
exposed-modules: Parser
, Types
, Ast
, Std
, Error
, Eval
build-depends: base
, unordered-containers
, transformers
, mtl
, megaparsec
, text
, text-show
, transformers
, parser-combinators
hs-source-dirs: compiler
default-language: Haskell2010
executable dabulang
main-is: Main.hs
hs-source-dirs: app
build-depends: base
, dabulang
, megaparsec
, mtl
, text
, unordered-containers
, transformers
default-language: Haskell2010