-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathhoist-error.cabal
36 lines (29 loc) · 1.15 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.2.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
tested-with: GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2, GHC == 8.2.2, GHC == 8.4.1
extra-source-files: changelog.md
tested-with: GHC == 7.8.4
, GHC == 7.10.3
, GHC == 8.0.2
, GHC == 8.2.2
, GHC == 8.4.1
source-repository head
type: git
location: https://github.com/alephcloud/hs-hoist-error.git
library
exposed-modules: Control.Monad.Error.Hoist
build-depends: base >=4.7 && <4.12
, mtl >=2.1 && <2.3
, either >=4 && <6
hs-source-dirs: src
default-language: Haskell2010