-
Notifications
You must be signed in to change notification settings - Fork 0
/
dabulang.cabal
62 lines (56 loc) · 1.77 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
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: sticcpistt@icloud.com
extra-source-files: TODO.org
, test
, README.md
, .hlint.yaml
, vscode-plugin
, .vscode
library dabulangc
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
, dabulangc
, megaparsec
, mtl
, text
, unordered-containers
, transformers
default-language: Haskell2010
executable lsp
main-is: Main.hs
other-modules: Completions
build-depends: base ^>=4.15.1.0
, lsp
, text
, dabulangc
, megaparsec
, transformers
, unordered-containers
, lens
hs-source-dirs: lsp
default-language: Haskell2010