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

69 lines
1.7 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.1.0.1
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-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
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
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
2020-07-13 15:11:05 +00:00
GHC == 8.8.3
2020-07-13 15:10:56 +00:00
GHC == 8.10.1
GHC == 9.0.1
2019-05-15 22:09:01 +00:00
common common
2019-10-29 16:49:18 +00:00
default-language: Haskell2010
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
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
, fused-effects-exceptions
2019-10-29 18:15:52 +00:00
, fused-effects
2022-04-01 02:34:23 +00:00
, tasty ^>= 1.4
2019-10-29 18:15:52 +00:00
, tasty-hunit ^>= 0.10
, transformers
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