-- Initial hitaa.cabal generated by cabal init. For further documentation, -- see http://haskell.org/cabal/users-guide/ name: asciidiagram version: 1.3.3.2 synopsis: Pretty rendering of Ascii diagram into svg or png. description: Transform Ascii art diagram like this: . @ , \/---------+ +---------+ | | | ASCII +----\>| Diagram | +---------+ | | | | +--+------\/ \\---*-----\/\<=======\/ @ . Into this: . <> . See the documentation of the Text.AsciiDiagram module for the description of the input format. license: BSD3 --license-file: author: Vincent Berthoux maintainer: vincent.berthoux@gmail.com -- copyright: category: Text, Diagram build-type: Simple extra-source-files: changelog.md extra-doc-files: docimages/*.svg cabal-version: >=1.18 Source-Repository head Type: git Location: git://github.com/Twinside/asciidiagram.git Source-Repository this Type: git Location: git://github.com/Twinside/asciidiagram.git Tag: v1.3.3.2 library ghc-options: -O2 -Wall exposed-modules: Text.AsciiDiagram other-modules: Text.AsciiDiagram.DiagramCleaner , Text.AsciiDiagram.DefaultContext , Text.AsciiDiagram.Geometry , Text.AsciiDiagram.Graph , Text.AsciiDiagram.Parser , Text.AsciiDiagram.Reconstructor , Text.AsciiDiagram.BoundingBoxEstimation , Text.AsciiDiagram.SvgRender if impl(ghc >= 8.0) ghc-options: -Wcompat -Wnoncanonical-monad-instances -Wnoncanonical-monadfail-instances else -- provide/emulate `Control.Monad.Fail` and `Data.Semigroups` API for pre-GHC8 build-depends: fail == 4.9.*, semigroups == 0.18.* -- containers >= 0.5.2.1 for Set.elemAt build-depends: base >=4.6 && < 6 , vector >= 0.10 , bytestring , text >= 1.2 && < 1.3 , linear >= 1.16 , containers >= 0.5 , mtl >= 2.1 && < 2.3 , lens >= 4.6 && < 5.0 , svg-tree >= 0.5.1.1 && < 0.7 , rasterific-svg >= 0.3.1.2 && < 0.4 , FontyFruity >= 0.5 && < 0.6 , JuicyPixels >= 3.2 hs-source-dirs: src default-language: Haskell2010 Executable asciidiagram Main-Is: asciidiagram.hs default-language: Haskell2010 ghc-options: -O2 -Wall Hs-Source-Dirs: exec-src Build-Depends: base >= 4.6 , directory >= 1.0 , bytestring , optparse-applicative , rasterific-svg , JuicyPixels , filepath , asciidiagram , svg-tree , text , FontyFruity