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

36 lines
1.3 KiB
Plaintext
Raw Normal View History

2019-07-06 14:31:33 +00:00
cabal-version: 2.4
2019-03-19 14:24:57 +00:00
name: fused-effects-exceptions
version: 1.0.0.0
2019-03-19 14:24:57 +00:00
synopsis: Handle exceptions thrown in IO with fused-effects.
description: Provides Resource and Catch effects capable of reacting to and catching GHC's dynamic exceptions
2019-03-19 14:24:57 +00:00
homepage: https://github.com/patrickt/fused-effects-exceptions#readme
2019-07-06 14:38:50 +00:00
license: BSD-3-Clause
2019-03-19 14:24:57 +00:00
license-file: LICENSE
author: Josh Vera, Patrick Thomson, and Rob Rix
2019-03-19 14:24:57 +00:00
maintainer: patrickt@github.com
copyright: 2019 Josh Vera, Patrick Thomson, and Rob Rix
2019-07-06 14:31:33 +00:00
category: Control
2019-03-19 14:24:57 +00:00
build-type: Simple
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.Carrier.Catch
Control.Carrier.Resource
Control.Carrier.State.IORef
Control.Effect.Catch
Control.Effect.Resource
build-depends: base >= 4.7 && < 5
, fused-effects
, safe-exceptions >= 0.1 && <1
, transformers
, unliftio-core >= 0.1.2 && <1
2019-05-15 22:09:01 +00:00
source-repository head
type: git
location: https://github.com/fused-effects/fused-effects-exceptions