-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminilog.cabal
51 lines (47 loc) · 1.21 KB
/
minilog.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
cabal-version: 3.0
name: minilog
version: 0.1.0.0
license: MIT
license-file: LICENSE
maintainer: [email protected]
author: lambduli
category: Language
build-type: Simple
extra-source-files:
src/Lexer.x
src/Parser.y
extra-doc-files: CHANGELOG.md
library
exposed-modules:
Term
Evaluate.State
Evaluate.Step
Token
Lexer
Parser
build-tool-depends: alex:alex >=3.2.6 && <4.0, happy:happy >=1.20.0 && <2.0
hs-source-dirs: src
default-language: Haskell2010
default-extensions: NamedFieldPuns ImportQualifiedPost BangPatterns
build-depends:
array,
base ^>=4.19.0.0,
containers >=0.6.2.1,
directory,
extra,
filepath,
hspec,
mtl,
transformers,
utf8-string
executable minilog
main-is: Main.hs
hs-source-dirs: app
default-language: Haskell2010
default-extensions: NamedFieldPuns ImportQualifiedPost BangPatterns
ghc-options: -Wall
build-depends:
minilog,
base ^>=4.19.0.0,
containers >=0.6.2.1,
extra >=1.7.12