-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.yaml
49 lines (43 loc) · 1.21 KB
/
package.yaml
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
47
48
49
name: uniform-error
version: 0.1.5.1
license: GPL-2.0-only
# license-file: GPL_3
maintainer: Andrew U. Frank <[email protected]>
github: github.com:andrewufrank/uniform-error.git
bug-reports: https://github.com/andrewufrank/uniform-error/issues
author: Andrew Frank
copyright: 2021 Andrew U. Frank
category: Error Exception Uniform
synopsis: Handling errors in the uniform framework
description: |
A minimal package to handle errors and exception
in a simple but flexible way. Includes functions to adapt the prefered method of calling IO with error handling (ErrIO) to the
approaches encountered in other packages when writing applications.
Please see the README on GitHub at <https://github.com/andrewufrank/uniform-error/readme>
extra-source-files:
- README.md
- ChangeLog.md
dependencies:
- base >= 4.7 && < 5
# - monads-tf
- transformers
- safe
- uniform-strings >= 0.1.5
- data-default
library:
source-dirs:
- .
verbatim:
autogen-modules:
Paths_uniform_error
tests:
error-test:
main: Testing.hs
source-dirs: test
ghc-options:
- -threaded
- -rtsopts
- -with-rtsopts=-N
dependencies:
- uniform-error
- HTF