packages feed

fluent-logger-0.1.0.0: fluent-logger.cabal

name:                fluent-logger
version:             0.1.0.0
synopsis:            A structured logger for Fluentd (Haskell)
description:         A structured logger for Fluentd (Haskell) <http://fluentd.org/>
license:             OtherLicense
license-file:        LICENSE
author:              Noriyuki OHKAWA <n.ohkawa@gmail.com>
maintainer:          Noriyuki OHKAWA <n.ohkawa@gmail.com>
copyright:           Copyright (c) 2012, Noriyuki OHKAWA
category:            Network
build-type:          Simple
cabal-version:       >=1.8
tested-with:         GHC ==7.4.2

source-repository head
  type:                git
  location:            https://github.com/notogawa/fluent-logger-haskell.git

library
  exposed-modules:     Network.Fluent.Logger
  ghc-options:         -Wall
  build-depends:       base ==4.*
                     , bytestring
                     , network >=2.3.0.13 && <2.5
                     , network-socket-options >=0.1 && <0.3
                     , time >=1.2.0.3
                     , old-locale
                     , msgpack >=0.7.1 && <0.8
                     , stm >=2.3

test-suite fluent-logger-spec
  hs-source-dirs:      test
  type:                exitcode-stdio-1.0
  main-is:             Spec.hs
  other-modules:       MockServer
                     , Network.Fluent.LoggerSpec
  build-depends:       base ==4.*
                     , fluent-logger
                     , network
                     , msgpack
                     , network-conduit
                     , conduit
                     , bytestring
                     , transformers
                     , hspec
                     , attoparsec
                     , old-locale
                     , time

benchmark fluent-logger-benchmark
  hs-source-dirs:      benchmark
  type:                exitcode-stdio-1.0
  main-is:             benchmark.hs
  build-depends:       base ==4.*
                     , fluent-logger
                     , criterion