name:                friendly
version:             0.1.0.2
synopsis:            Attempt to pretty-print any input
description:         The friendly executable copies standard input
                     to standard output, attempting to pretty-print the
                     input without actually requiring that the input
                     is well-formed in any way.
license:             BSD3
license-file:        LICENSE
author:              Edsko de Vries
maintainer:          edsko@well-typed.com
copyright:           Edsko de Vries
category:            Development
build-type:          Simple
extra-source-files:  ChangeLog.md
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/edsko/friendly

executable friendly
  main-is:             Main.hs
  build-depends:       base                 >= 4.7  && < 4.15
                     , bifunctors           >= 4.2  && < 5.6
                     , lens                 >= 4.6  && < 4.20
                     , optparse-applicative >= 0.11 && < 0.16
  hs-source-dirs:      src
  default-language:    Haskell2010
  default-extensions:  MultiWayIf
                       RecordWildCards
  other-extensions:    TemplateHaskell
  ghc-options:         -Wall