-
Notifications
You must be signed in to change notification settings - Fork 3
/
unagi-streams.cabal
31 lines (28 loc) · 1.12 KB
/
unagi-streams.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: unagi-streams
version: 0.2.7
synopsis: Unagi Chan IO-Streams
description: Io-streams chans implemented underneath with
unagi-chans. This library is a straight port of
the default io-streams chan implementation.
License: BSD3
License-file: LICENSE
author: Luke Hoersten
maintainer: [email protected]
copyright: Bitnomial, Inc. (c) 2016
category: IO-Streams, Concurrency
build-type: Simple
cabal-version: >= 1.10
homepage: https://github.com/bitnomial/unagi-streams
bug-reports: https://github.com/bitnomial/unagi-streams/issues
source-repository head
type: git
location: git://github.com/bitnomial/unagi-streams.git
library
exposed-modules:
System.IO.Streams.Concurrent.Unagi
, System.IO.Streams.Concurrent.Unagi.Bounded
build-depends: base >= 4.7 && < 5
, io-streams >= 1.2 && < 1.6
, unagi-chan >= 0.2 && < 0.5
hs-source-dirs: src
default-language: Haskell2010