-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheffet.cabal
101 lines (96 loc) · 3.22 KB
/
effet.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.33.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: ffe68db8c6d675cf3fe231bfb39afc61fb46480297a4f27060e925180f7eb8a8
name: effet
version: 0.4.0.0
synopsis: An Effect System based on Type Classes
description: Please see the README on GitHub at <https://github.com/typedbyte/effet#readme>
category: Control
homepage: https://github.com/typedbyte/effet#readme
bug-reports: https://github.com/typedbyte/effet/issues
author: Michael Szvetits
maintainer: [email protected]
copyright: 2020 Michael Szvetits
license: BSD3
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/typedbyte/effet
library
exposed-modules:
Control.Effect.Cont
Control.Effect.Embed
Control.Effect.Error
Control.Effect.Identity
Control.Effect.Machinery
Control.Effect.Machinery.Tagger
Control.Effect.Machinery.TH
Control.Effect.Machinery.Via
Control.Effect.Managed
Control.Effect.Map
Control.Effect.Map.Lazy
Control.Effect.Map.Strict
Control.Effect.Reader
Control.Effect.Resource
Control.Effect.RWS
Control.Effect.RWS.Lazy
Control.Effect.RWS.Strict
Control.Effect.State
Control.Effect.State.Lazy
Control.Effect.State.Strict
Control.Effect.Writer
Control.Effect.Writer.Lazy
Control.Effect.Writer.Strict
other-modules:
Paths_effet
hs-source-dirs:
src
default-extensions: AllowAmbiguousTypes ConstraintKinds DataKinds DerivingVia FlexibleContexts FlexibleInstances FunctionalDependencies GeneralizedNewtypeDeriving KindSignatures LambdaCase MultiParamTypeClasses PolyKinds RankNTypes ScopedTypeVariables TypeApplications TypeFamilies TypeOperators UndecidableInstances
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, containers >=0.6.2.1 && <0.7
, monad-control >=1.0.2.3 && <1.1
, template-haskell >=2.14.0.0 && <3
, transformers >=0.5.6.2 && <0.6
, transformers-base >=0.4.5.2 && <0.5
default-language: Haskell2010
test-suite examples
type: exitcode-stdio-1.0
main-is: Main.hs
other-modules:
Example.Cont
Example.Embed
Example.Error
Example.FileSystem
Example.Logger
Example.Managed
Example.Map
Example.Reader
Example.Resource
Example.RWS
Example.State
Example.Writer
Hspec
Paths_effet
hs-source-dirs:
examples
default-extensions: AllowAmbiguousTypes ConstraintKinds DataKinds DerivingVia FlexibleContexts FlexibleInstances FunctionalDependencies GeneralizedNewtypeDeriving KindSignatures LambdaCase MultiParamTypeClasses PolyKinds RankNTypes ScopedTypeVariables TypeApplications TypeFamilies TypeOperators UndecidableInstances
ghc-options: -Wall
build-depends:
base >=4.7 && <5
, containers >=0.6.2.1 && <0.7
, effet
, hspec >=2.6.0 && <3
, monad-control >=1.0.2.3 && <1.1
, template-haskell >=2.14.0.0 && <3
, transformers >=0.5.6.2 && <0.6
, transformers-base >=0.4.5.2 && <0.5
default-language: Haskell2010