packages feed

effects-0.2.3: effects.cabal

name:                effects
version:             0.2.3
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.6,
                       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