packages feed

mpretty-0.1.0.0: mpretty.cabal

name:                mpretty
synopsis:            a monadic, extensible pretty printing library
description:         based on wadler-leijen printing.  supports ansi colors,
                     configurable list printing styles, and extension of the printing monad
version:             0.1.0.0
license:             BSD3
license-file:        LICENSE
author:              David Darais
maintainer:          david.darais@gmail.com
category:            Text
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:     Text.MPretty
                       , Text.MPretty.IsPretty
                       , Text.MPretty.MonadPretty
                       , Text.MPretty.Pretty
                       , Text.MPretty.StateSpace

  other-modules:       
                       Util.ConsoleState
                     , Util.HasLens
                     , Util.Lens
                     , Util.List
                     , Test

  build-depends:       ansi-terminal == 0.6.*
                     , base == 4.6.*
                     , containers == 0.5.*
                     , data-lens-fd == 2.0.*
                     , data-lens-template == 2.1.*
                     , mtl == 2.1.*
                     , text == 0.11.*
                     , transformers == 0.3.*
                     , orders == 0.1.*