File: errors.cabal

package info (click to toggle)
haskell-errors 1.4.7-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 84 kB
  • sloc: haskell: 464; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 1,084 bytes parent folder | download
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
Name: errors
Version: 1.4.7
Cabal-Version: >=1.8.0.2
Build-Type: Simple
License: BSD3
License-File: LICENSE
Copyright: 2012, 2013 Gabriel Gonzalez
Author: Gabriel Gonzalez
Maintainer: Gabriel439@gmail.com
Bug-Reports: https://github.com/Gabriel439/Haskell-Errors-Library/issues
Synopsis: Simplified error-handling
Description:
    The one-stop shop for all your error-handling needs!  Just import
    "Control.Error".
    .
    This library encourages an error-handling style that directly uses the type
    system, rather than out-of-band exceptions.
Category: Control, Error Handling
Source-Repository head
    Type: git
    Location: https://github.com/Gabriel439/Haskell-Errors-Library

Library
    Build-Depends:
        base         >= 4     && < 5  ,
        either       >= 3.1   && < 5  ,
        safe         >= 0.3.3 && < 0.4,
        transformers >= 0.2   && < 0.5
    Exposed-Modules:
        Control.Error,
        Control.Error.Safe,
        Control.Error.Script,
        Control.Error.Util,
        Data.EitherR
    GHC-Options: -O2