graph-trace-dot-0.1.0.0: graph-trace-dot.cabal
cabal-version: 2.4
name: graph-trace-dot
version: 0.1.0.0
-- A short (one-line) description of the package.
synopsis:
Converts a graph-trace log into a DOT file for use with Graphviz
-- A longer description of the package.
description:
Creates a DOT file from a @graph-trace@ log which is useable with [Graphviz](https://graphviz.org).
.
See the [README](https://github.com/aaronallen8455/graph-trace#graph-trace) for details.
-- A URL where users can report bugs.
bug-reports: https://github.com/aaronallen8455/graph-trace/issues
-- The license under which the package is released.
license: MIT
-- The package author(s).
-- author:
maintainer: aaronallen8455@gmail.com
-- A copyright notice.
copyright: Copyright (C) 2022 Aaron Allen
category: tooling, debug, development, graph, plugin
extra-source-files: CHANGELOG.md
tested-with: GHC==9.2.1, GHC==9.0.1, GHC==8.10.7
library
default-language: Haskell2010
exposed-modules: Graph.Trace.Dot
build-depends: base
, bytestring
, containers
, directory
, attoparsec
hs-source-dirs: src
ghc-options: -Wall
executable graph-trace-dot
default-language: Haskell2010
main-is: Main.hs
build-depends: base >= 4.9 && < 5
, bytestring
, containers
, directory
, attoparsec
, graph-trace-dot
hs-source-dirs: app
ghc-options: -Wall