packages feed

hsnsq-0.1.0.0: hsnsq.cabal

name:                hsnsq
version:             0.1.0.0
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.
homepage:            https://github.com/gamelost/hsnsq
license:             Apache-2.0
license-file:        LICENSE
author:              Paul Berens
maintainer:          berens.paul@gmail.com
-- copyright:
category:            Network
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  exposed-modules:     Network.NSQ
  default-language:    Haskell2010
  ghc-options:        -Wall -fno-warn-missing-signatures -O2
  hs-source-dirs:      src
  build-depends:       base >=4.5 && <4.7
                     , bytestring
                     , attoparsec
                     , attoparsec-binary
                     , aeson
                     , pipes
                     , pipes-attoparsec
                     , pipes-network
                     , network
                     , text
                     , mtl
                     , containers
                     , stm-chans
                     , stm
                     , async
                     , hslogger
                     , hostname

executable nsq-example
  main-is:             Example.hs
  default-language:    Haskell2010
  ghc-options:        -Wall -fno-warn-missing-signatures -O2 -rtsopts -with-rtsopts=-T -threaded -eventlog
  hs-source-dirs:      src
  build-depends:       base >=4.5 && <4.7
                     , bytestring
                     , attoparsec
                     , attoparsec-binary
                     , aeson
                     , pipes
                     , pipes-attoparsec
                     , pipes-network
                     , network
                     , text
                     , mtl
                     , containers
                     , stm-chans
                     , stm
                     , async
                     , hslogger
                     , hostname