packages feed

enumerator-0.2: enumerator.cabal

name: enumerator
version: 0.2
synopsis: Implementation of Oleg Kiselyov's left-fold enumerators
license: MIT
license-file: license.txt
author: John Millikin <jmillikin@gmail.com>
maintainer: jmillikin@gmail.com
copyright: Copyright (c) John Millikin 2010
build-type: Simple
cabal-version: >=1.6
category: Data
stability: experimental
homepage: http://ianen.org/haskell/enumerator/
bug-reports: mailto:jmillikin@gmail.com
tested-with: GHC==6.12.1

description:
  Based on Oleg Kiselyov's IterateeM: <http://okmij.org/ftp/Haskell/Iteratee/IterateeM.hs>

extra-source-files:
  Examples/*.hs
  readme.txt

source-repository head
  type: darcs
  location: http://ianen.org/haskell/enumerator/

library
  ghc-options: -Wall -fno-warn-unused-do-bind
  hs-source-dirs: hs

  build-depends:
      transformers >= 0.2 && < 0.3
    , bytestring >= 0.9 && < 0.10
    , text >= 0.7 && < 0.8

  if impl(ghc >= 6.10)
    build-depends:
        base >=4 && < 5
  else
    build-depends:
        base >=3 && < 4
      , extensible-exceptions

  exposed-modules:
    Data.Enumerator
    Data.Enumerator.IO
    Data.Enumerator.Text

  other-modules:
    Data.Enumerator.Util