packages feed

hw-aws-sqs-conduit-0.1.0.0: hw-aws-sqs-conduit.cabal

cabal-version:  >= 1.10

name:                 hw-aws-sqs-conduit
version:              0.1.0.0
synopsis:             AWS SQS conduit
description:          AWS SQS conduit.
category:             Web
homepage:             https://github.com/githubuser/hw-aws-sqs-conduit#readme
bug-reports:          https://github.com/githubuser/hw-aws-sqs-conduit/issues
author:               John Ky
maintainer:           newhoggy@gmail.com
copyright:            2017-2020 John Ky
license:              BSD3
license-file:         LICENSE
build-type:           Simple
extra-source-files:   README.md

source-repository head
  type: git
  location: https://github.com/githubuser/hw-aws-sqs-conduit

library
  exposed-modules:
      HaskellWorks.Aws.Sqs.Conduit
  other-modules:
      Paths_hw_aws_sqs_conduit
  hs-source-dirs:
      src
  build-depends:
      amazonka
    , amazonka-sqs
    , base >=4.7 && <5
    , conduit
    , lens
    , mtl
    , text
  default-language: Haskell2010

test-suite hw-aws-sqs-conduit-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_hw_aws_sqs_conduit
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
  build-depends:
      base
    , hw-aws-sqs-conduit
  default-language: Haskell2010