packages feed

hsnsq-0.1.2.0: hsnsq.cabal

name: hsnsq
version: 0.1.2.0
cabal-version: >=1.10
build-type: Simple
license: Apache-2.0
license-file: LICENSE
copyright: (c) Paul Berens
maintainer: berens.paul@gmail.com
homepage: https://github.com/gamelost/hsnsq
synopsis: Haskell NSQ client.
description:
    Currently a primitive NSQ client, it implements the very basics of an NSQ client for communicating with single NSQ servers. For example usage refer to https://github.com/gamelost/nsq-benchmarks/haskell/benchmark.hs
category: Network
author: Paul Berens
extra-source-files:
    README.md

library
    build-depends:
        base >=4.5 && <4.8,
        bytestring <0.11,
        attoparsec <0.13,
        attoparsec-binary <0.3,
        aeson <0.9,
        pipes <4.2,
        pipes-attoparsec <0.6,
        pipes-network <0.7,
        network <2.6,
        text <1.2,
        mtl <2.3,
        containers <0.6,
        stm-chans <3.1,
        stm <2.5,
        async <2.1,
        hslogger <1.3,
        hostname <1.1
    exposed-modules:
        Network.NSQ
        Network.NSQ.Connection
        Network.NSQ.Identify
        Network.NSQ.Parser
        Network.NSQ.Types
    exposed: True
    buildable: True
    default-language: Haskell2010
    hs-source-dirs: src
    ghc-options: -Wall -fno-warn-missing-signatures -O2