name: kickchan version: 0.1.0.4 synopsis: Kick Channels: bounded channels with non-blocking writes description: An efficient, thread-safe implementation of bounded channels with invalidating readers homepage: https://github.com/JohnLato/kickchan license: BSD3 license-file: LICENSE author: John Lato maintainer: jwlato@gmail.com -- copyright: category: Data,Concurrency build-type: Simple cabal-version: >=1.10 library default-language: Haskell2010 hs-source-dirs: src ghc-options: -Wall exposed-modules: Chan.KickChan -- other-modules: build-depends: base >= 4.5 && < 5 ,containers >= 0.4 && < 0.6 ,primitive >= 0.5 ,vector >= 0.8 Test-Suite test default-language: Haskell2010 type: exitcode-stdio-1.0 main-is: Properties.hs hs-source-dirs: tests src ghc-options: -threaded build-depends: base, containers, primitive, vector, HUnit >= 1.1 && < 2, QuickCheck >= 2 && < 3, test-framework >= 0.3 && < 0.9, test-framework-hunit >= 0.2 && < 0.4, test-framework-quickcheck2 >= 0.2 && < 0.4 source-repository head type: git location: git://github.com/JohnLato/kickchan.git