-
Notifications
You must be signed in to change notification settings - Fork 1
/
has-transformers.cabal
67 lines (61 loc) · 1.71 KB
/
has-transformers.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
63
64
65
66
67
cabal-version: 2.4
name: has-transformers
version: 0.1.0.3
synopsis: This library 'Has' transformers
description:
A very slim library for first-order effects based on monad transformers
(and nearly nothing else).
.
Given a transformer stack @t1 (t2 (t3 (... m))) a@,
you can automatically lift any function @thing :: tN m a@ into the stack with a single function, 'liftH'.
bug-reports: https://github.com/turion/has-transformers/issues
homepage: https://github.com/turion/has-transformers
license: MIT
license-file: LICENSE
author: Manuel Bärenz
maintainer: programming@manuelbaerenz.de
copyright: (c) 2021- Manuel Bärenz
category: Effect
extra-source-files: CHANGELOG.md
extra-doc-files: README.md
library
exposed-modules:
Control.Monad.Trans.Has
Control.Monad.Trans.Has.Accum
Control.Monad.Trans.Has.Except
Control.Monad.Trans.Has.Reader
Control.Monad.Trans.Has.State
Control.Monad.Trans.Has.Writer
default-extensions:
ConstraintKinds
, FlexibleContexts
, FlexibleInstances
, ImportQualifiedPost
, MultiParamTypeClasses
, PackageImports
build-depends:
base >= 4.14 && < 5
, transformers
hs-source-dirs: src
default-language: Haskell2010
test-suite examples
type: exitcode-stdio-1.0
default-language: Haskell2010
main-is: Spec.hs
hs-source-dirs: examples
other-modules:
Examples.StateSig
Examples.TwoReaders
Examples.TwoReadersSpec
default-extensions:
ConstraintKinds
, FlexibleContexts
, GADTs
, ImportQualifiedPost
, PackageImports
build-depends:
base >= 4.14 && < 5
, has-transformers
, hspec >= 2.9.0
, operational
build-tool-depends: hspec-discover:hspec-discover