packages feed

milena-0.2.0.0: milena.cabal

name:                milena

-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.2.0.0
synopsis:            A Kafka client for Haskell.
description:         Kafka client for Haskell (not recommended for production use).
license:             BSD3
license-file:        LICENSE
author:              Tyler Holien
maintainer:          tyler.holien@gmail.com
copyright:           2014, Tyler Holien
category:            Network
build-type:          Simple
stability:           alpha
cabal-version:       >=1.10

source-repository head
  type: git
  location: https://github.com/tylerholien/milena.git

source-repository this
  type: git
  location: https://github.com/tylerholien/milena.git
  tag: 0.2.0.0

library
  default-language: Haskell2010
  ghc-options:         -Wall
  exposed-modules:     Network.Kafka,
                       Network.Kafka.Protocol
                       Network.Kafka.Producer
  build-depends:       base          >=4.7      && <5,
                       mtl           >=2.1      && <2.3,
                       cereal        >=0.4      && <0.5,
                       bytestring    >=0.10     && <0.11,
                       network       >=2.4      && <2.7,
                       digest        >=0.0.1.0  && <0.1,
                       containers    >=0.5      && <0.6,
                       either        >=4.3      && <4.4,
                       random        >=1.0      && <1.2,
                       transformers  >=0.3      && <0.5,
                       lens          >=4.4      && <4.8,
                       resource-pool >=0.2.3.2  && <0.3

test-suite test
  default-language: Haskell2010
  ghc-options:         -Wall -threaded
  build-depends:       base,
                       milena,
                       network,
                       QuickCheck,
                       bytestring,
                       hspec
  hs-source-dirs:      test
  main-is:             tests.hs
  type:                exitcode-stdio-1.0