packages feed

cerberus-0.1.0.0: cerberus.cabal

name:                cerberus
version:             0.1.0.0
synopsis:            Protect and control API access with cerberus
description:         Please see README.md
homepage:            http://github.com/yogsototh/cerberus#readme
license:             BSD3
license-file:        LICENSE
author:              Yann Esposito
maintainer:          yann.esposito@gmail.com
copyright:           2015 Yann Esposito
category:            Development
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Cerberus.Lib
  build-depends:       base >= 4.7 && < 5
                     , blaze-builder
                     , bytestring
                     , conduit-extra
                     , ekg
                     , ekg-core
                     , hslogger
                     , http-types
                     , http-client
                     , http-client-tls
                     , http-reverse-proxy
                     , text
                     , wai
                     , wai-middleware-throttle
                     , wai-middleware-caching >= 0.1.0.2
                     , wai-middleware-caching-lru
                     , wai-middleware-caching-redis
                     , warp
  default-language:    Haskell2010

executable cerberus
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -Wall -O2 -threaded -optc-O3 -rtsopts -auto-all -caf-all -with-rtsopts=-TN
  build-depends:       base
                     , ekg
                     , ekg-core
                     , hslogger
                     , cerberus
                     , cmdargs
                     , pretty-show
  default-language:    Haskell2010

test-suite cerberus-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , cerberus
  ghc-options:         -Wall -O2 -threaded -optc-O3 -rtsopts -auto-all -caf-all -with-rtsopts=-TN
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/yogsototh/cerberus