unagi-streams.cabal
author Luke Hoersten <luke@hoersten.org>
Tue, 09 Dec 2014 13:37:21 -0600
changeset 2 1760b7d150cf
parent 1 e31281e9da96
child 3 400d49213290
permissions -rw-r--r--
Added bounded dup streams.

name:                unagi-streams
version:             0.1.1.0
synopsis:            Unagi Chan IO-Streams
description:         IO-Streams implemented underneath with Unagi
                     channels. This library is a straight port of Greg Collins' IO-Streams
                     Chan implementation.
License:             BSD3
License-file:        LICENSE
author:              Luke Hoersten
maintainer:          luke@hoersten.org
category:            IO-Streams, Concurrency
build-type:          Simple
cabal-version:       >= 1.10

library
  exposed-modules:
                System.IO.Streams.Concurrent.Unagi
              , System.IO.Streams.Concurrent.Unagi.Bounded
  build-depends:
                base       >= 4.7 && < 4.8
              , unagi-chan >= 0.2 && < 0.3
              , io-streams >= 1.2 && < 1.3

  hs-source-dirs:      src/
  default-language:    Haskell2010