packages feed

lazy-io-0.1.0: lazy-io.cabal

name:               lazy-io
version:            0.1.0
synopsis:           Lazy IO
description:
    The library provides some basic but useful lazy IO functions.

    Keep in mind that lazy IO is generally discouraged.
    Perhaps a coroutine library (e.g. pipes) will better suit your needs.
license:            BSD3
cabal-version:      >= 1.6
author:             Jakub Waszczuk
maintainer:         waszczuk.kuba@gmail.com
stability:          experimental
category:           System
homepage:           https://github.com/kawu/lazy-io
build-type:         Simple

library
    hs-source-dirs: src

    build-depends:
        base >= 4 && < 5

    exposed-modules:
        Control.Monad.LazyIO

    ghc-options: -Wall

source-repository head
    type: git
    location: https://github.com/kawu/lazy-io.git