forked from well-typed/visualize-cbn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvisualize-cbn.cabal
71 lines (68 loc) · 2.82 KB
/
visualize-cbn.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
-- Initial visualize-cbn.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: visualize-cbn
version: 0.1.0.0
synopsis: Visualize CBN reduction
description: CBN interpretation and visualization tool.
Exports in text format, coloured text (ANSI) or HTML/JavaScript.
license: BSD3
license-file: LICENSE
author: Edsko de Vries
maintainer: [email protected]
copyright: Well-Typed LLP
category: Development
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/well-typed/visualize-cbn
executable visualize-cbn
main-is: Main.hs
other-modules: CBN.Eval
CBN.Free
CBN.Heap
CBN.Language
CBN.Options
CBN.Parser
CBN.Pretty
CBN.Pretty.Precedence
CBN.Subst
CBN.Trace
CBN.Trace.JavaScript
CBN.Trace.Textual
CBN.Util.Doc
CBN.Util.Doc.Rendered
CBN.Util.Doc.Rendered.ANSI
CBN.Util.Doc.Rendered.HTML
CBN.Util.Doc.Rendered.String
CBN.Util.Doc.Style
CBN.Util.Map
CBN.Util.Snoc
build-depends: base >= 4.8 && < 4.11
, ansi-terminal >= 0.6 && < 0.7
, blaze-html >= 0.8 && < 0.10
, blaze-markup >= 0.7 && < 0.9
, containers >= 0.5 && < 0.6
, data-default >= 0.7 && < 0.8
, mtl >= 2.2 && < 2.3
, optparse-applicative >= 0.12 && < 0.15
, parsec >= 3.1 && < 3.2
-- version shipped with ghc
, template-haskell
hs-source-dirs: src
default-language: Haskell2010
default-extensions: DeriveDataTypeable
ExistentialQuantification
FlexibleInstances
LambdaCase
RecordWildCards
ScopedTypeVariables
StandaloneDeriving
other-extensions: GeneralizedNewtypeDeriving
OverloadedStrings
TemplateHaskell
ghc-options: -Wall
-fno-warn-orphans
-rtsopts
"-with-rtsopts=-M128M"