packages feed

logentries-0.1.0.1: logentries.cabal

name:                logentries
version:             0.1.0.1
homepage:            https://github.com/toddmohney/logentries#README.md
license:             BSD3
license-file:        LICENSE
author:              Todd Mohney
maintainer:          toddmohney@gmail.com
copyright:           2016 Todd Mohney
category:            Web
build-type:          Simple
cabal-version:       >=1.10
stability:           experimental
synopsis:            Request logger middleware for Logentries
description:         Wai Middleware request logger for Logentries

extra-source-files:
  README.md
  LICENSE
  circle.yml
  stack.yaml
  example/LICENSE
  example/README.md
  example/example.cabal
  example/*.hs
  example/stack.yaml

source-repository head
  type: git
  location: https://github.com/toddmohney/logentries.git

library
  hs-source-dirs:      src

  exposed-modules:
    Network.Wai.Middleware.RequestLogger.LogEntries

  other-modules:
    Network.Wai.Middleware.RequestLogger.Internal.Formatting

  build-depends: base         >= 4.7 && < 5
               , bytestring   >= 0.10.6.0 && < 0.10.7.0
               , data-default >= 0.5.3 && < 0.6.0
               , fast-logger  >= 2.4.6 && < 2.5.0
               , network      >= 2.6.2.1 && < 2.6.3.0
               , stm          >= 2.4.4.1 && < 2.4.5.0
               , uuid-types   >= 1.0.3 && < 1.1.0
               , wai          >= 3.2.1.1 && < 3.2.2.0
               , wai-extra    >= 3.0.15.1 && < 3.0.16.0

  default-language:    Haskell2010

  default-extensions:
    OverloadedStrings
    RecordWildCards

test-suite logentries-test
  type:                exitcode-stdio-1.0

  hs-source-dirs:
    src
    test

  other-modules:
    Network.Wai.Middleware.RequestLogger.Internal.Formatting
    Network.Wai.Middleware.RequestLogger.Internal.FormattingSpec

  main-is:             Spec.hs

  build-depends: base
               , bytestring   >= 0.10.6.0 && < 0.10.7.0
               , fast-logger  >= 2.4.6 && < 2.5.0
               , hspec        >= 2.2.3 && < 2.3.0
               , logentries
               , uuid-types   >= 1.0.3 && < 1.1.0

  ghc-options:
    -Wall
    -fwarn-unused-matches
    -fwarn-unused-binds
    -fwarn-unused-imports
    -threaded
    -rtsopts
    -with-rtsopts=-N

  default-extensions:
    OverloadedStrings
    RecordWildCards

  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/toddmohney/logentries