fused-effects-exceptions/fused-effects-exceptions.cabal

30 lines
1.1 KiB
Plaintext
Raw Normal View History

2019-03-19 14:24:57 +00:00
name: fused-effects-exceptions
2019-05-15 22:09:01 +00:00
version: 0.1.1.0
2019-03-19 14:24:57 +00:00
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
2019-04-12 19:49:57 +00:00
copyright: 2019 Josh Vera and Patrick Thomson
2019-03-19 14:24:57 +00:00
category: Control.
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
2019-05-15 22:09:01 +00:00
tested-with: GHC == 8.6.4
2019-03-19 14:24:57 +00:00
library
hs-source-dirs: src
default-language: Haskell2010
exposed-modules: Control.Effect.Catch
build-depends: base >= 4.7 && < 5
2019-04-08 17:14:38 +00:00
, fused-effects >= 0.3 && <1
2019-03-19 14:24:57 +00:00
, safe-exceptions >= 0.1 && <1
2019-05-15 22:09:01 +00:00
, unliftio-core >= 0.1.2 && <1
source-repository head
type: git
location: https://github.com/fused-effects/fused-effects-exceptions