-
Notifications
You must be signed in to change notification settings - Fork 0
/
effects.cabal
42 lines (36 loc) · 1.29 KB
/
effects.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
name: effects
version: 0.2.4
synopsis: Computational Effects
description: Control.Effects is a library for programming with effects, like in the the Eff language by
Andrej Bauer and Matija Pretnar. Effects can be used instead of monad transformers.
.
See the home page for some example code.
category: Control, Monads
license: BSD3
license-file: LICENSE
author: Sjoerd Visscher
maintainer: sjoerd@w3future.com
stability: experimental
homepage: http://github.com/sjoerdvisscher/effects
bug-reports: http://github.com/sjoerdvisscher/effects/issues
build-type: Simple
cabal-version: >= 1.6
Extra-Source-Files:
examples.hs
Library
HS-Source-Dirs: src
build-depends: base >= 3 && < 5,
containers >= 0.4 && < 0.7,
newtype-generics,
void
exposed-modules:
Control.Effects
Control.Effects.Cont
Control.Effects.Either
Control.Effects.Error
Control.Effects.NonDet
Control.Effects.State
Control.Effects.Writer
source-repository head
type: git
location: git://github.com/sjoerdvisscher/effects.git