unagi-streams.cabal
changeset 0 e77b750dfbda
child 1 e31281e9da96
equal deleted inserted replaced
-1:000000000000 0:e77b750dfbda
       
     1 name:                unagi-streams
       
     2 version:             0.1.0.0
       
     3 synopsis:            Unagi Chan IO-Streams
       
     4 description:         IO-Streams implemented underneath with Unagi
       
     5                      channels. This library is a straight port of Greg Collins' IO-Streams
       
     6                      Chan implementation.
       
     7 License:             BSD3
       
     8 License-file:        LICENSE
       
     9 author:              Luke Hoersten
       
    10 maintainer:          [email protected]
       
    11 -- copyright:
       
    12 category:            System
       
    13 build-type:          Simple
       
    14 -- extra-source-files:
       
    15 cabal-version:       >=1.10
       
    16 
       
    17 library
       
    18   exposed-modules:
       
    19                 System.IO.Streams.Concurrent.Unagi
       
    20   -- other-modules:
       
    21   -- other-extensions:
       
    22   build-depends:
       
    23                 base       >= 4.7 && < 4.8
       
    24               , unagi-chan >= 0.2 && < 0.3
       
    25               , io-streams >= 1.2 && < 1.3
       
    26 
       
    27   hs-source-dirs:      src/
       
    28   default-language:    Haskell2010