packages feed

transformers-eff-0.1.0.0: transformers-eff.cabal

name:                transformers-eff
synopsis:            An approach to managing composable effects, ala mtl/transformers/extensible-effects/Eff
version:             0.1.0.0
homepage:            https://github.com/ocharles/transformers-eff
license:             BSD3
license-file:        LICENSE
author:              Ollie Charles
maintainer:          ollie@ocharles.org.uk
-- copyright:           
category:            Control
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Control.Effect, Control.Effect.Environment, Control.Effect.Nondeterminism, Control.Effect.Exception, Control.Effect.IO, Control.Effect.State, Control.Effect.Identity
  -- other-modules:       
  other-extensions:    TypeOperators, DeriveDataTypeable, DefaultSignatures, DeriveFunctor, StandaloneDeriving, ExistentialQuantification, FlexibleContexts, FlexibleInstances, FunctionalDependencies, KindSignatures, RankNTypes, UndecidableInstances, MultiParamTypeClasses, GeneralizedNewtypeDeriving
  build-depends:       base >=4.8 && <4.9, transformers >=0.4 && <0.5, pipes, free, mmorph
  -- hs-source-dirs:      
  default-language:    Haskell2010
  ghc-options: -Wall

benchmark oleg
  build-depends: base, effect-interpreters, criterion, mtl, pipes, transformers
  hs-source-dirs: benchmark
  main-is: Bench.hs
  type: exitcode-stdio-1.0
  ghc-options: -O2