-
Notifications
You must be signed in to change notification settings - Fork 1
/
monad-recorder.cabal
62 lines (56 loc) · 2.32 KB
/
monad-recorder.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
52
53
54
55
56
57
58
59
60
61
62
name: monad-recorder
version: 0.1.1
synopsis: Record and replay the results of monadic actions
description: A monad transformer and class that allows recording
the results of monadic actions and replay them later.
Inspired by the logging implementation in the transient
package by Alberto G. Corona. Related packages:
.
* https://hackage.haskell.org/package/transient
* https://hackage.haskell.org/package/Workflow
homepage: http://github.com/harendra-kumar/monad-recorder
bug-reports: https://github.com/harendra-kumar/monad-recorder/issues
license: MIT
license-file: LICENSE
author: Harendra Kumar
maintainer: [email protected]
copyright: 2017 Harendra Kumar
category: General
stability: Experimental
build-type: Simple
cabal-version: >= 1.10
tested-with: GHC==7.10.3, GHC==8.0.2, GHC==8.2.2, GHC==8.4.1
extra-source-files:
Changelog.md
README.md
stack.yaml
library
hs-source-dirs: src
exposed-modules: Control.Monad.Trans.Recorder
, Control.Monad.Trans.AutoRecorder
default-language: Haskell2010
ghc-options: -Wall -fwarn-identities -fwarn-incomplete-record-updates
-fwarn-incomplete-uni-patterns -fwarn-tabs
build-depends: base >= 4.8 && < 5
, exceptions >= 0.8 && < 0.11
, monad-control >= 1.0 && < 2
, mtl >= 2.2 && < 3
, transformers >= 0.4 && < 0.6
, transformers-base >= 0.4 && < 0.5
test-suite test
type: exitcode-stdio-1.0
main-is: Main.hs
hs-source-dirs: test
ghc-options: -O0 -Wall -fwarn-identities -fwarn-incomplete-record-updates
-fwarn-incomplete-uni-patterns -fwarn-tabs
build-depends:
base >= 4.8 && < 5
, hspec >= 2.0 && < 3
, monad-recorder
if impl(ghc < 8.0)
build-depends:
transformers >= 0.4 && < 0.6
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/harendra-kumar/monad-recorder