-
Notifications
You must be signed in to change notification settings - Fork 0
/
jago.cabal
44 lines (40 loc) · 1.46 KB
/
jago.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
cabal-version: >=1.10
name: jago
version: 0.0.0
synopsis: Simplified markup language to author HTML pages
description: This project contains both the library and executable to compile a jago document to HTML
license: ISC
license-file: LICENSE
author: Muhammad Kaisar Arkhan
maintainer: [email protected]
category: Language, Compiler
build-type: Simple
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://git.sr.ht/~yuki_is_bored/jago
library
default-language: Haskell2010
default-extensions: OverloadedStrings
hs-source-dirs: Lib
exposed-modules: Jago.Parser,
Jago.AST,
Jago.Render.Html,
Jago.Compiler,
Jago
other-modules:
build-depends: base >= 4.13 && < 5,
text >= 1.2 && < 1.3,
parsec >= 3.1 && < 3.2,
indents >= 0.5 && < 0.6
executable jago
default-language: Haskell2010
default-extensions: OverloadedStrings
hs-source-dirs: Exec
main-is: Main.hs
build-depends: base >= 4.13 && < 5,
text >= 1.2 && < 1.3,
parsec >= 3.1 && < 3.2,
indents >= 0.5 && < 0.6,
optparse-applicative >= 0.16 && < 0.17,
jago