src.nth.io/

summaryrefslogtreecommitdiff
path: root/unagi-streams.cabal
blob: 8ded4ba7e44e46370b4ad07277f5027e375c2c17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name:                unagi-streams
version:             0.1.0.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:          [email protected]
category:            IO-Streams, Concurrency
build-type:          Simple
cabal-version:       >= 1.10

library
  exposed-modules:
                System.IO.Streams.Concurrent.Unagi
  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