forked from brendanhay/amazonka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
amazonka-examples.cabal
54 lines (49 loc) · 1.45 KB
/
amazonka-examples.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: amazonka-examples
version: 1.6.1
synopsis: Basic examples for various amazonka libraries.
homepage: https://github.com/brendanhay/amazonka
license: MPL-2.0
license-file: LICENSE
author: Brendan Hay
maintainer: Brendan Hay <[email protected]>
copyright: Copyright (c) 2013-2017 Brendan Hay
build-type: Simple
extra-source-files: README.md
cabal-version: >= 1.10
source-repository head
type: git
location: git://github.com/brendanhay/amazonka.git
subdir: examples
library
default-language: Haskell2010
hs-source-dirs: src
ghc-options:
-Wall
-fwarn-incomplete-uni-patterns
-fwarn-incomplete-record-updates
exposed-modules:
Example.APIGateway
, Example.DynamoDB
, Example.EC2
, Example.ExceptionSemantics
, Example.S3
, Example.SQS
build-depends:
amazonka == 1.6.1.*
, amazonka-apigateway
, amazonka-core
, amazonka-dynamodb
, amazonka-ec2
, amazonka-s3
, amazonka-sqs
, base >= 4.7
, bytestring
, conduit
, conduit-extra
, exceptions
, lens
, semigroups
, text
, time
, transformers
, unordered-containers