-
Notifications
You must be signed in to change notification settings - Fork 0
/
pingo.cabal
43 lines (38 loc) · 1.02 KB
/
pingo.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
name: pingo
version: 0.4.0.0
synopsis: Pretty Printer for Clingo
homepage: https://github.com/egnwd/pingo
license: MIT
license-file: LICENSE
author: Elliot Greenwood
maintainer: hello@elliotgreenwood.co.uk
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
library
exposed-modules:
Pingo.AST,
Pingo.AST.Types,
Pingo.AST.Show,
Pingo.Parser,
Pingo.Parser.ASP,
Pingo.Parser.ILASP,
Pingo.Parser.Utils
build-depends:
base >=4.8,
parsec >= 3.1 && < 3.2,
parsec3-numbers == 0.1.0,
ansi-terminal >= 0.7 && <1.0
hs-source-dirs: src
default-language: Haskell2010
executable pingo
main-is: Main.hs
build-depends:
base >=4.8,
parsec >= 3.1 && < 3.2,
parsec3-numbers == 0.1.0,
ansi-terminal >= 0.7 && <1.0,
unix >= 2.7.2 && < 2.8,
options >= 1.2.1.1 && < 1.3
hs-source-dirs: src
default-language: Haskell2010