packages feed

sqsd-local-0.2.0: sqsd-local.cabal

name:                sqsd-local
version:             0.2.0
synopsis:            Initial project template from stack
description:         A local version of sqsd, the daemon that runs in Elastic Beanstalk's Worker Environments.
homepage:            https://github.com/owickstrom/sqsd-local#readme
license:             MPL-2.0
license-file:        LICENSE
author:              Oskar Wickström
maintainer:          oskar.wickstrom@gmail.com
copyright:           AllRightsReserved
category:            Web
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

executable sqsd-local
  hs-source-dirs:      src
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       amazonka
                     , amazonka-sqs
                     , base >= 4.7 && < 5
                     , bytestring >= 0.10.8.1
                     , case-insensitive >= 1.2.0.7
                     , exceptions >= 0.8.3
                     , http-client >= 0.4.31.2
                     , lens
                     , lifted-base >= 0.2.3.8
                     , resourcet >= 1.1.9
                     , text
                     , unordered-containers >= 0.2.7.2
                     , wreq
  other-modules:       Network.SQS.Daemon.Local
  default-language:    Haskell2010

test-suite sqsd-local-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , sqsd-local
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/owickstrom/sqsd-local