-
Notifications
You must be signed in to change notification settings - Fork 2
/
freer-effects-extra.cabal
55 lines (49 loc) · 1.6 KB
/
freer-effects-extra.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
name: freer-effects-extra
version: 0.1.0.0
synopsis: Extra goodies for freer-effects package.
description:
Extra goodies for
<https://hackage.haskell.org/package/freer-effects freer-effects> package.
homepage: https://github.com/trskop/freer-extra
bug-reports: https://github.com/trskop/freer-extra/issues
license: BSD3
license-file: LICENSE
author: Peter Trško
maintainer: peter.trsko@gmail.com
copyright: (c) 2016-2017 Peter Trško
category: Control
build-type: Simple
cabal-version: >=1.10
extra-source-files: ChangeLog.md, README.md
library
hs-source-dirs: src
exposed-modules:
Control.Monad.Freer.Class
, Control.Monad.Freer.Base
, Control.Monad.Freer.Exception.Extra
, Control.Monad.Freer.Reader.Extra
, Control.Monad.Freer.State.Extra
-- other-modules:
build-depends:
base >=4.9 && <4.10
, exceptions >=0.6 && <0.9
, freer-effects ==0.3.*
, lens ==4.*
, mtl >=1.1 && <3
-- ^ Version 1.1.0.0 is the first one that introduced
-- "Control.Monad.{Reader,State}.Class".
, profunctors ==5.*
, transformers >=0.4 && <1
-- ^ Version 0.4.0.0 introduced ExceptT and deprecated ErrorT.
, transformers-base ==0.4.*
default-language: Haskell2010
other-extensions:
DataKinds
, FlexibleContexts
, FlexibleInstances
, LambdaCase
, MultiParamTypeClasses
, NoImplicitPrelude
, TypeFamilies
, TypeOperators
ghc-options: -Wall