aws-easy-0.1.0.0: aws-easy.cabal
name: aws-easy
version: 0.1.0.0
synopsis: AWS Easy: Helper functions for working with amazonka
description: This package provides assorted functions and some Template Haskell to simplify working the amazonka family of packages for interacting with Amazon Web Services.
homepage: https://github.com/rcook/aws-easy#readme
license: MIT
license-file: LICENSE
author: Richard Cook
maintainer: rcook@rcook.org
copyright: 2018 Richard Cook
category: Network
build-type: Simple
cabal-version: >= 1.10
extra-source-files: README.md
source-repository head
type: git
location: https://github.com/rcook/aws-easy.git
library
default-language: Haskell2010
hs-source-dirs: lib
ghc-options: -W -Wall -fwarn-incomplete-patterns -fwarn-unused-imports
build-depends: amazonka
, amazonka-core
, base >= 4.7 && < 5
, bytestring
, lens
, resourcet
, template-haskell
, text
exposed-modules: Network.AWS.Easy
, Network.AWS.Easy.Classes
, Network.AWS.Easy.Prelude
, Network.AWS.Easy.Service
, Network.AWS.Easy.TH
, Network.AWS.Easy.Types
, Network.AWS.Easy.Util
executable aws-easy-app
default-language: Haskell2010
hs-source-dirs: app
main-is: Main.hs
ghc-options: -threaded -rtsopts -with-rtsopts=-N -W -Wall -fwarn-incomplete-patterns -fwarn-unused-imports
build-depends: aws-easy
, base >= 4.7 && < 5