packages feed

unexceptionalio-trans-0.5.2: unexceptionalio-trans.cabal

name:            unexceptionalio-trans
version:         0.5.2
cabal-version:   >=1.10
license:         OtherLicense
license-file:    COPYING
copyright:       © 2018 Stephen Paul Weber
category:        Control
author:          Stephen Paul Weber <singpolyma@singpolyma.net>
maintainer:      Stephen Paul Weber <singpolyma@singpolyma.net>
stability:       experimental
build-type:      Simple
homepage:        https://github.com/singpolyma/unexceptionalio-trans
bug-reports:     http://github.com/singpolyma/unexceptionalio-trans/issues
synopsis:        A wrapper around UnexceptionalIO using monad transformers
description:
        UnexceptionalIO provides a basic type to witness having caught all
        exceptions you can safely handle.  This library builds on that with
        transformers like ExceptT to provide a more ergonomic tool for many
        cases.
        .
        It is intended that you use qualified imports with this library.
        .
        > import UnexceptionalIO.Trans (UIO)
        > import qualified UnexceptionalIO.Trans as UIO

library
        default-language: Haskell2010
        exposed-modules:
                UnexceptionalIO.Trans

        build-depends:
                base == 4.*,
                transformers,
                unexceptionalio == 0.5.*

source-repository head
        type:     git
        location: git://github.com/singpolyma/unexceptionalio-trans.git