30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
name: fused-effects-exceptions
|
|
version: 0.1.1.0
|
|
synopsis: Handle exceptions thrown in IO with fused-effects.
|
|
description: Provides an effect that enables catching exceptions thrown from impure computations such as 'IO'.
|
|
homepage: https://github.com/patrickt/fused-effects-exceptions#readme
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Josh Vera
|
|
maintainer: patrickt@github.com
|
|
copyright: 2019 Josh Vera and Patrick Thomson
|
|
category: Control.
|
|
build-type: Simple
|
|
cabal-version: >=1.10
|
|
extra-source-files: README.md
|
|
|
|
tested-with: GHC == 8.6.4
|
|
|
|
library
|
|
hs-source-dirs: src
|
|
default-language: Haskell2010
|
|
exposed-modules: Control.Effect.Catch
|
|
build-depends: base >= 4.7 && < 5
|
|
, fused-effects >= 0.3 && <1
|
|
, safe-exceptions >= 0.1 && <1
|
|
, unliftio-core >= 0.1.2 && <1
|
|
|
|
source-repository head
|
|
type: git
|
|
location: https://github.com/fused-effects/fused-effects-exceptions
|