diff options
| author | Luke Hoersten <[email protected]> | 2014-12-08 22:31:25 -0600 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2014-12-08 22:31:25 -0600 |
| commit | 0b181b282ce066d3804757de9b0f8fd7501e6c4b (patch) | |
| tree | d72cc88f4c0eb97b04c56b53fac2d182214b40d4 /unagi-streams.cabal | |
Initial commit.
Diffstat (limited to 'unagi-streams.cabal')
| -rw-r--r-- | unagi-streams.cabal | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/unagi-streams.cabal b/unagi-streams.cabal new file mode 100644 index 0000000..e527e7a --- /dev/null +++ b/unagi-streams.cabal @@ -0,0 +1,28 @@ +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] +-- copyright: +category: System +build-type: Simple +-- extra-source-files: +cabal-version: >=1.10 + +library + exposed-modules: + System.IO.Streams.Concurrent.Unagi + -- other-modules: + -- other-extensions: + 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 |
