1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
name: unexceptionalio
version: 0.5.1
cabal-version: >=1.10
license: OtherLicense
license-file: COPYING
copyright: © 2013-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
bug-reports: http://github.com/singpolyma/unexceptionalio/issues
synopsis: IO without any non-error, synchronous exceptions
description:
When you've caught all the exceptions that can be handled safely,
this is what you're left with.
.
It is intended that you use qualified imports with this library.
.
> import UnexceptionalIO (UIO)
> import qualified UnexceptionalIO as UIO
.
You may also wish to investigate unexceptionalio-trans if you like
monad transformers.
.
Blog post: http://sngpl.ma/p4uT0
library
default-language: Haskell2010
ghc-options: -fno-warn-tabs
exposed-modules:
UnexceptionalIO
build-depends:
base == 4.*
test-suite tests
type: exitcode-stdio-1.0
main-is: tests/suite.hs
ghc-options: -O0 -fno-warn-tabs
default-language: Haskell2010
other-modules: UnexceptionalIO
build-depends:
base == 4.*,
HUnit,
test-framework,
test-framework-hunit
source-repository head
type: git
location: git://github.com/singpolyma/unexceptionalio.git
|