author | Luke Hoersten <luke@hoersten.org> |
Tue, 31 May 2016 22:18:36 -0500 | |
changeset 10 | 6b78f0dd0a6b |
parent 9 | dca196679c1d |
permissions | -rw-r--r-- |
0 | 1 |
name: unagi-streams |
10 | 2 |
version: 0.2.0 |
0 | 3 |
synopsis: Unagi Chan IO-Streams |
4
1baf8e3b8ef2
Added some functions to help exposed chans to streams.
Luke Hoersten <luke@hoersten.org>
parents:
3
diff
changeset
|
4 |
description: Io-streams chans implemented underneath with |
1baf8e3b8ef2
Added some functions to help exposed chans to streams.
Luke Hoersten <luke@hoersten.org>
parents:
3
diff
changeset
|
5 |
unagi-chans. This library is a straight port of |
1baf8e3b8ef2
Added some functions to help exposed chans to streams.
Luke Hoersten <luke@hoersten.org>
parents:
3
diff
changeset
|
6 |
the default io-streams chan implementation. |
0 | 7 |
License: BSD3 |
8 |
License-file: LICENSE |
|
9 |
author: Luke Hoersten |
|
10 |
maintainer: luke@hoersten.org |
|
1 | 11 |
category: IO-Streams, Concurrency |
0 | 12 |
build-type: Simple |
1 | 13 |
cabal-version: >= 1.10 |
9 | 14 |
homepage: https://github.com/LukeHoersten/unagi-streams |
15 |
bug-reports: https://github.com/LukeHoersten/unagi-streams/issues |
|
16 |
||
17 |
source-repository head |
|
18 |
type: git |
|
19 |
location: git://github.com/LukeHoersten/unagi-streams.git |
|
0 | 20 |
|
21 |
library |
|
22 |
exposed-modules: |
|
23 |
System.IO.Streams.Concurrent.Unagi |
|
2 | 24 |
, System.IO.Streams.Concurrent.Unagi.Bounded |
0 | 25 |
build-depends: |
10 | 26 |
base >= 4.7 && < 4.10 |
7
27ba8efbbb06
Version bumps on unagi-chan and io-streams
David Johnson <djohnson.m@gmail.com>
parents:
6
diff
changeset
|
27 |
, unagi-chan >= 0.2 && < 0.5 |
27ba8efbbb06
Version bumps on unagi-chan and io-streams
David Johnson <djohnson.m@gmail.com>
parents:
6
diff
changeset
|
28 |
, io-streams >= 1.2 && < 1.4 |
0 | 29 |
|
3
400d49213290
Removed opaque type for chan dupping.
Luke Hoersten <luke@hoersten.org>
parents:
2
diff
changeset
|
30 |
hs-source-dirs: src |
0 | 31 |
default-language: Haskell2010 |