-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfused-effects-resumable.cabal
46 lines (40 loc) · 1.66 KB
/
fused-effects-resumable.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
cabal-version: 2.0
name: fused-effects-resumable
version: 0.1.0.0
synopsis: Resumable exceptions for the fused-effects ecosystem.
description: Provides an effect and carrier capable of resuming control flow from an exceptoin handler.
homepage: https://github.com/fused-effects/fused-effects-resumable
bug-reports: https://github.com/fused-effects/fused-effects-resumable/issues
license: BSD3
license-file: LICENSE
author: Rob Rix and Patrick Thomson
maintainer: [email protected]
copyright: 2019 Rob Rix and Patrick Thomson
category: Control
build-type: Simple
extra-doc-files: README.md
, CHANGELOG.md
tested-with: GHC == 8.6.4
source-repository head
type: git
location: https://github.com/fused-effects/fused-effects-resumable.git
library
hs-source-dirs: src
exposed-modules: Control.Carrier.Resumable.Either
Control.Carrier.Resumable.Resume
Control.Effect.Resumable
build-depends:
base >= 4.9 && < 4.14
, deepseq ^>= 1.4.3
, fused-effects ^>= 1
, transformers >= 0.4 && < 0.6
ghc-options: -Wall
-Wincomplete-uni-patterns
-Wincomplete-record-updates
-Wcompat
-Widentities
-Wredundant-constraints
-fhide-source-paths
-Wmissing-export-lists
-Wpartial-fields
default-language: Haskell2010