cabal-version: 2.4 name: tell version: 0.1 synopsis: The MonadTell class and related monad transformers. description: @MonadTell@ is (morally) a superclass of @MonadWriter@ that only provides @tell@. In contrast to @MonadWriter@, implementors of @MonadTell@ are not required to hold on to their output. This means that @MonadTell@ is a better choice in situations such as logging and writing to files. homepage: https://github.com/LightAndLight/tell bug-reports: https://github.com/LightAndLight/tell/issues license: BSD-3-Clause license-file: LICENSE author: Isaac Elliott maintainer: isaace71295@gmail.com copyright: (C) 2021 Isaac Elliott category: Control extra-source-files: CHANGELOG.md library exposed-modules: Control.Monad.Tell.Class , Control.Monad.Trans.HandleWriter build-depends: base >=4.14.1.0 && <5 , mtl >=2.2 && <2.3 , transformers >=0.5.6 && <0.6.1 hs-source-dirs: src default-language: Haskell2010 ghc-options: -Wall