2019-07-06 14:31:33 +00:00
|
|
|
cabal-version: 2.4
|
|
|
|
|
2019-03-19 14:24:57 +00:00
|
|
|
name: fused-effects-exceptions
|
2020-07-13 15:10:10 +00:00
|
|
|
version: 1.1.0.0
|
2019-03-19 14:24:57 +00:00
|
|
|
synopsis: Handle exceptions thrown in IO with fused-effects.
|
2019-10-14 17:24:28 +00:00
|
|
|
description: Provides Resource and Catch effects capable of reacting to and catching GHC's dynamic exceptions.
|
2019-07-15 19:58:06 +00:00
|
|
|
homepage: https://github.com/fused-effects/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
|
2019-10-14 17:22:38 +00:00
|
|
|
author: Josh Vera, Patrick Thomson, and Rob Rix
|
2019-03-19 14:24:57 +00:00
|
|
|
maintainer: patrickt@github.com
|
2019-10-14 17:22:38 +00:00
|
|
|
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
|
2019-10-29 16:49:18 +00:00
|
|
|
extra-source-files:
|
|
|
|
README.md
|
|
|
|
ChangeLog.md
|
2019-03-19 14:24:57 +00:00
|
|
|
|
2019-10-29 16:49:18 +00:00
|
|
|
tested-with:
|
|
|
|
GHC == 8.2.2
|
|
|
|
GHC == 8.4.4
|
|
|
|
GHC == 8.6.5
|
|
|
|
GHC == 8.8.1
|
2019-05-15 22:09:01 +00:00
|
|
|
|
2019-11-01 15:30:36 +00:00
|
|
|
common common
|
2019-10-29 16:49:18 +00:00
|
|
|
default-language: Haskell2010
|
2019-11-01 15:30:36 +00:00
|
|
|
|
|
|
|
library
|
|
|
|
import: common
|
|
|
|
hs-source-dirs: src
|
2019-10-29 16:49:18 +00:00
|
|
|
exposed-modules:
|
|
|
|
Control.Carrier.State.IORef
|
|
|
|
Control.Effect.Exception
|
|
|
|
build-depends:
|
|
|
|
base >= 4.7 && < 5
|
2020-07-08 15:09:01 +00:00
|
|
|
, fused-effects >= 1.1
|
2019-10-29 16:49:18 +00:00
|
|
|
, transformers >= 0.4 && < 0.6
|
2019-05-15 22:09:01 +00:00
|
|
|
|
2019-10-29 18:15:52 +00:00
|
|
|
test-suite test
|
2019-11-01 15:30:36 +00:00
|
|
|
import: common
|
2019-10-29 18:15:52 +00:00
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Main.hs
|
|
|
|
build-depends:
|
|
|
|
base
|
2019-10-29 18:47:13 +00:00
|
|
|
, fused-effects-exceptions
|
2019-10-29 18:15:52 +00:00
|
|
|
, fused-effects
|
|
|
|
, tasty ^>= 1.2
|
|
|
|
, tasty-hunit ^>= 0.10
|
|
|
|
, transformers
|
|
|
|
|
2019-11-01 15:30:36 +00:00
|
|
|
test-suite docs
|
|
|
|
import: common
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
main-is: README.lhs
|
|
|
|
ghc-options: -pgmL markdown-unlit
|
|
|
|
build-depends:
|
|
|
|
base
|
|
|
|
, fused-effects
|
|
|
|
, fused-effects-exceptions
|
|
|
|
build-tool-depends:
|
|
|
|
markdown-unlit:markdown-unlit ^>= 0.5
|
|
|
|
|
2019-05-15 22:09:01 +00:00
|
|
|
source-repository head
|
|
|
|
type: git
|
|
|
|
location: https://github.com/fused-effects/fused-effects-exceptions
|