-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocated-base.cabal
51 lines (46 loc) · 1.86 KB
/
located-base.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
47
48
49
50
51
name: located-base
version: 0.1.1.0
synopsis: Location-aware variants of partial functions
description: This library provides variants of standard partial functions
that include their call-site in the error message when they crash.
.
For example:
.
@
ghci> 'Data.List.Located.head' []
*** Exception: Prelude.head: empty list
Callstack:
\ \ error, called at src\/Data\/List\/Located.hs:19:14 in locat_KhGZ7Rz1bn9DKFeFxhawNB:Data.List.Located
\ \ head, called at \<interactive\>:6:1 in interactive:Ghci1
@
homepage: http://github.com/gridaphobe/located-base
bug-reports: http://github.com/gridaphobe/located-base/issues
license: BSD3
license-file: LICENSE
author: Eric Seidel
maintainer: [email protected]
copyright: Eric Seidel 2015
category: Development
build-type: Simple
cabal-version: >=1.10
tested-with: GHC == 7.10.3, GHC == 8.0.2
source-repository head
type: git
location: https://github.com/gridaphobe/located-base.git
library
exposed-modules: Data.Either.Located
, Data.List.Located
, Data.Maybe.Located
, GHC.Err.Located
, Text.Read.Located
build-depends: base >= 4.8.1.0 && < 5
hs-source-dirs: src
default-language: Haskell2010
benchmark bench
type: exitcode-stdio-1.0
main-is: Bench.hs
hs-source-dirs: bench
default-language: Haskell2010
build-depends: base
, criterion
, located-base