packages feed

freestyle-0.1.0.0: freestyle.cabal

cabal-version:      3.0
name:               freestyle
version:            0.1.0.0
synopsis:           Freestyle TUI graphics
description:        Concurrent, pretty terminal graphics
license:            MIT
license-file:       LICENSE
author:             dopamane
maintainer:         dwc1295@gmail.com
copyright:          (c) David Cox
category:           Graphics, Concurrency, STM, Prettyprinter
build-type:         Simple
extra-doc-files:    CHANGELOG.md
                    README.md

source-repository head
  type:     git
  location: https://github.com/dopamane/freestyle

library
  ghc-options:      -Wall -Wunused-packages -O2
  hs-source-dirs:   lib
  default-language: Haskell2010
  exposed-modules:  Freestyle
  build-depends:    base < 5.0,
                    prettyprinter,
                    stm,
                    text

test-suite test
  ghc-options:      -Wall -Wunused-packages -O2 -threaded
  hs-source-dirs:   test
  default-language: Haskell2010
  type:             exitcode-stdio-1.0
  main-is:          Main.hs
  build-depends:    async,
                    base,
                    freestyle,
                    prettyprinter,
                    prettyprinter-ansi-terminal,
                    stm,
                    text