-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlilac.cabal
49 lines (46 loc) · 1.61 KB
/
lilac.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
cabal-version: 2.4
name: lilac
version: 0.1.0.0
synopsis: Lispy string manipulation language
homepage: https://github.com/dmarcia/lilac-dev
bug-reports: https://github.com/dmarcia/lilac-dev/issues
license: CC0-1.0
author: dmarcia
maintainer: marcia@disroot.org
category: Language
library
exposed-modules: Lilac,
Lilac.Utility,
Lilac.Source,
Lilac.Syntax,
Lilac.Parser.Error,
Lilac.Parser.Obj,
Lilac.Parser.Phase1,
Lilac.Parser.Phase2
other-modules:
build-depends: base ^>=4.14.1.0,
text ^>=2.0,
megaparsec ^>=9.2,
composition ^>=1.0,
mtl ^>=2.2,
parser-combinators ^>=1.3
hs-source-dirs: src
default-language: Haskell2010
default-extensions: UnicodeSyntax,
OverloadedStrings,
LambdaCase,
StandaloneDeriving
executable lilac
main-is: Main.hs
other-modules:
build-depends: base ^>=4.14.1.0,
lilac
hs-source-dirs: app
default-language: Haskell2010
default-extensions: UnicodeSyntax
test-suite lilac-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: MyLibTest.hs
build-depends: base ^>=4.14.1.0