packages feed

dotparse-0.1.2.1: dotparse.cabal

cabal-version: 3.0
name: dotparse
version: 0.1.2.1
license: BSD-3-Clause
license-file: LICENSE
copyright: Tony Day (c) 2020
category: graphics
author: Tony Day
maintainer: tonyday567@gmail.com
homepage: https://github.com/tonyday567/dotparse#readme
bug-reports: https://github.com/tonyday567/dotparse/issues
synopsis: dot language parsing and printing.
description:
    This package provides parsing and printing of the dot language.

    == Usage

    >>> :set -XOverloadedLabels
    >>> :set -XOverloadedStrings
    >>> import DotParse
    >>> import Chart
    >>> import Data.Text (pack)
    >>> import DotParse.Examples (exInt)
    >>> ex <- processGraph exInt
    >>> writeChartOptions "other/exga.svg" (graphToChart ex)

    ![usage example](docs/other/exga.svg)

build-type: Simple
tested-with:
    , GHC == 9.10.1
    , GHC == 9.8.2
    , GHC == 9.6.5
extra-doc-files:
    ChangeLog.md
    other/*.svg
    readme.md

source-repository head
    type: git
    location: https://github.com/tonyday567/dotparse

common ghc-options-stanza
    ghc-options:
        -Wall
        -Wcompat
        -Widentities
        -Wincomplete-record-updates
        -Wincomplete-uni-patterns
        -Wpartial-fields
        -Wredundant-constraints

common ghc2021-stanza
    default-language: GHC2021

library
    import: ghc-options-stanza
    import: ghc2021-stanza
    hs-source-dirs: src
    build-depends:
        , algebraic-graphs   >=0.6 && <0.8
        , base               >=4.7 && <5
        , bytestring         >=0.11.3 && <0.13
        , chart-svg          >=0.6 && <0.9
        , containers         >=0.6 && <0.8
        , flatparse          >=0.3.5 && <0.6
        , numhask-space      >=0.10 && <0.14
        , optics-core        >=0.4 && <0.5
        , process-extras     >=0.7.4 && <0.8
        , string-interpolate >=0.3 && <0.4
        , template-haskell   >=2.16 && <2.23
        , text               >=1.2 && <2.2
        , these              >=1.1 && <1.3
    exposed-modules:
        DotParse
        DotParse.Examples
        DotParse.Examples.AST
        DotParse.Examples.NumHask
        DotParse.FlatParse
        DotParse.FlatParse.TH
        DotParse.Types

test-suite doctests
    import: ghc2021-stanza
    main-is: doctests.hs
    hs-source-dirs: test
    build-depends:
        , base             >=4.14 && <5
        , doctest-parallel >=0.3 && <0.4
        , dotparse
    ghc-options: -threaded
    type: exitcode-stdio-1.0