cabal-version: >=1.10 name: visualize-cbn version: 0.1.0.2 x-revision: 3 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: edsko@well-typed.com copyright: Well-Typed LLP category: Development build-type: Simple extra-source-files: ChangeLog.md README.md CONTRIBUTORS tested-with: GHC == 9.8.0 GHC == 9.6.3 GHC == 9.4.7 GHC == 9.2.8 GHC == 9.0.2 GHC == 8.10.7 GHC == 8.8.4 GHC == 8.6.5 GHC == 8.4.4 GHC == 8.2.2 GHC == 8.0.2 source-repository head type: git location: https://github.com/well-typed/visualize-cbn executable visualize-cbn main-is: Main.hs other-modules: CBN.Closure CBN.Eval CBN.Free CBN.Heap CBN.Language CBN.Options CBN.Parser CBN.Pretty CBN.Pretty.Precedence CBN.Subst CBN.Trace CBN.Trace.HeapGraph CBN.Trace.JavaScript CBN.Trace.Textual CBN.Trace.Graph 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.9 && < 4.20 , ansi-terminal >= 0.6 && < 1.1 , blaze-html >= 0.8 && < 0.10 , blaze-markup >= 0.7 && < 0.9 , containers >= 0.5 && < 0.8 , data-default >= 0.7 && < 0.8 , optparse-applicative >= 0.12 && < 0.19 , parsec >= 3.1 && < 3.2 -- version shipped with ghc , template-haskell , mtl , text 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"