-
Notifications
You must be signed in to change notification settings - Fork 2
/
trace.cabal
39 lines (34 loc) · 1.06 KB
/
trace.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
name: trace
version: 0.2.0.1
synopsis: A monad transformer for tracing provenience of errors
-- description:
license: MIT
license-file: LICENSE
author: Jon Sterling
maintainer: [email protected]
copyright: Copyright (c) 2014-2015 AlephCloud, Inc
category: Control
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
extra-doc-files:
README.md,
CHANGELOG.md
source-repository head
type: git
location: https://github.com/alephcloud/hs-trace.git
library
exposed-modules:
Control.Monad.Trace
Control.Monad.Trace.Class
Control.Monad.Trace.ErrorTrace
Control.Monad.Trans.Trace
build-depends: base >=4.7 && <5.0
, containers >=0.5.5
, deepseq >= 1.3
, monad-control >=0.3
, mtl >=2.1
, transformers >=0.4
, transformers-base >=0.4
hs-source-dirs: src
default-language: Haskell2010