-
Notifications
You must be signed in to change notification settings - Fork 0
/
LLLang.cabal
37 lines (34 loc) · 1.02 KB
/
LLLang.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
cabal-version: 2.2
-- Initial Lang.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: LLLang
version: 0.1.0.0
synopsis: A linear logic based programming language.
-- description:
license: MIT
license-file: LICENSE
author: Jean CASPAR
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
executable LLLang
main-is: Main.hs
other-modules: Type Expr Interpreter
build-depends:
base ^>= 4.14,
megaparsec ^>= 9.1,
containers ^>= 0.6,
text ^>= 1.2,
parser-combinators ^>= 1.3,
unordered-containers ^>= 0.2,
hashable ^>= 1.3,
atomic-primops ^>= 0.8,
stm ^>= 2.5,
async ^>= 2.2
ghc-options:
-Wall -Wextra
default-extensions: LambdaCase TupleSections BlockArguments NamedFieldPuns
hs-source-dirs: src
default-language: Haskell2010