pretty-simple-4.1.4.0: pretty-simple.cabal
name: pretty-simple
version: 4.1.4.0
synopsis: pretty printer for data types with a 'Show' instance.
description: Please see <https://github.com/cdepillabout/pretty-simple#readme README.md>.
homepage: https://github.com/cdepillabout/pretty-simple
license: BSD3
license-file: LICENSE
author: Dennis Gosnell
maintainer: cdep.illabout@gmail.com
copyright: 2017-2019 Dennis Gosnell
category: Text
build-type: Simple
extra-source-files: CHANGELOG.md
, README.md
, img/pretty-simple-example-screenshot.png
cabal-version: >=1.10
flag buildexe
description: Build an small command line program that pretty-print anything from stdin.
default: True
flag buildexample
description: Build a small example program showing how to use the pPrint function
default: False
library
hs-source-dirs: src
exposed-modules: Debug.Pretty.Simple
, Text.Pretty.Simple
, Text.Pretty.Simple.Internal
, Text.Pretty.Simple.Internal.Color
, Text.Pretty.Simple.Internal.Expr
, Text.Pretty.Simple.Internal.ExprParser
, Text.Pretty.Simple.Internal.Printer
build-depends: base >= 4.8 && < 5
, containers
, mtl >= 2.2
, prettyprinter >= 1.7.0
, prettyprinter-ansi-terminal >= 1.1.2
, text >= 1.2
, transformers >= 0.4
default-language: Haskell2010
ghc-options: -Wall
other-extensions: TemplateHaskell
executable pretty-simple
main-is: Main.hs
other-modules: Paths_pretty_simple
hs-source-dirs: app
build-depends: base
, pretty-simple
, text
, optparse-applicative
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
if flag(buildexe)
buildable: True
else
buildable: False
executable pretty-simple-example
main-is: Example.hs
other-modules: Example.Data
hs-source-dirs: example
build-depends: base
, pretty-simple
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
if flag(buildexample)
buildable: True
else
buildable: False
executable pretty-simple-json-example
main-is: ExampleJSON.hs
other-modules: Example.Data
hs-source-dirs: example
build-depends: base
, aeson
, bytestring
, pretty-simple
, text
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
if flag(buildexample)
buildable: True
else
buildable: False
benchmark pretty-simple-bench
type: exitcode-stdio-1.0
main-is: Bench.hs
other-modules: Example.Data
hs-source-dirs: bench
, example
build-depends: base
, criterion
, pretty-simple
, text
default-language: Haskell2010
ghc-options: -Wall -threaded -rtsopts -with-rtsopts=-N
source-repository head
type: git
location: git@github.com:cdepillabout/pretty-simple.git