packages feed

stacked-dag-0.1.0.0: stacked-dag.cabal

-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 57c444b244471ba568f185b245e319dac1300ef668335859a1516b8b2a0bbe7d

name:           stacked-dag
version:        0.1.0.0
synopsis:       Ascii DAG(Directed acyclic graph) for visualization of dataflow
description:    Please see the README on GitHub at <https://github.com/junji.hashimoto/stacked-dag#readme>
category:       Graphs, Graphics
homepage:       https://github.com/junjihashimoto/stacked-dag#readme
bug-reports:    https://github.com/junjihashimoto/stacked-dag/issues
author:         Junji Hashimoto
maintainer:     junji.hashimoto@gmail.com
copyright:      2018 Junji Hashimoto
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files:
    ChangeLog.md
    README.md

source-repository head
  type: git
  location: https://github.com/junjihashimoto/stacked-dag

library
  exposed-modules:
      StackedDag
      StackedDag.Base
      StackedDag.Graphviz
  other-modules:
      Paths_stacked_dag
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , containers
    , graphviz
    , text
  default-language: Haskell2010

executable stacked-dag
  main-is: Main.hs
  other-modules:
      Paths_stacked_dag
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , containers
    , graphviz
    , optparse-applicative
    , stacked-dag
    , text
  default-language: Haskell2010

test-suite doctest
  type: exitcode-stdio-1.0
  main-is: doctests.hs
  other-modules:
      Paths_stacked_dag
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base >=4.7 && <5
    , containers
    , doctest
    , graphviz
    , stacked-dag
    , text
  default-language: Haskell2010