packages feed

aws-ses-easy-0.0.0: package.yaml

name: aws-ses-easy
version: '0.0.0'
github: jxv/aws-ses-easy
license: BSD3
license-file: LICENSE.md
author: Joe Vargas
maintainer: Joe Vargas
synopsis: Wrapper over Amazonka's SES
description: Opinionated use of Amazonka's SES for ease
category: Network

extra-source-files:
- CHANGELOG.md
- LICENSE.md
- package.yaml
- README.md
- stack.yaml

ghc-options: -Wall

library:
  dependencies:
  - base >= 4.5 && <5
  - amazonka
  - amazonka-ses
  - lens
  - lucid
  - mtl
  - text
  - text-conversions
  - exceptions
  source-dirs: library

benchmarks:
  aws-ses-easy-benchmarks:
    source-dirs: benchmark
    main: Main.hs
    dependencies:
    - base
    - aws-ses-easy
    - criterion
    ghc-options:
    - -rtsopts
    - -threaded
    - -with-rtsopts=-N

tests:
  aws-ses-easy-test-suite:
    source-dirs: test-suite
    main: Main.hs
    dependencies:
    - base
    - aws-ses-easy
    - tasty
    - tasty-hspec
    ghc-options:
    - -rtsopts
    - -threaded
    - -with-rtsopts=-N