forked from alephcloud/hs-hoist-error
-
Notifications
You must be signed in to change notification settings - Fork 4
/
hoist-error.cabal
36 lines (31 loc) · 1.11 KB
/
hoist-error.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
name: hoist-error
version: 0.3.1.0
synopsis: Some convenience facilities for hoisting errors into a monad
description: Provides a typeclass and useful combinators for hoisting errors into a monad.
license: MIT
license-file: LICENSE
author: Jon Sterling
maintainer: [email protected]
copyright: Copyright (c) 2014 AlephCloud, Inc
category: Control
build-type: Simple
cabal-version: >=1.10
extra-source-files: changelog.md
tested-with: GHC == 8.8.4
, GHC == 8.10.7
, GHC == 9.0.1
, GHC == 9.2.7
, GHC == 9.4.5
, GHC == 9.6.4
, GHC == 9.8.2
source-repository head
type: git
location: https://github.com/alephcloud/hs-hoist-error.git
library
exposed-modules:
Control.Monad.Error.Hoist
Control.Monad.Fail.Hoist
build-depends: base >=4.13 && <4.20
, mtl >=2.2 && <2.4
hs-source-dirs: src
default-language: Haskell2010