-
Notifications
You must be signed in to change notification settings - Fork 2
/
aws-lambda.cabal
57 lines (55 loc) · 2.34 KB
/
aws-lambda.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
55
56
57
name: aws-lambda
version: 0.1.0.1
synopsis: Haskell bindings for AWS Lambda
homepage: https://github.com/alephcloud/hs-aws-lambda
license: Apache-2.0
license-file: LICENSE
author: Jon Sterling
maintainer: [email protected]
copyright: Copyright (c) 2013-2014 PivotCloud, Inc.
category: Network, Cloud
build-type: Simple
cabal-version: >=1.10
extra-source-files: CHANGELOG.md
source-repository head
type: git
location: https://github.com/alephcloud/hs-aws-lambda.git
library
exposed-modules: Aws.Lambda,
Aws.Lambda.Core,
Aws.Lambda.Types,
Aws.Lambda.Commands.AddEventSource,
Aws.Lambda.Commands.DeleteFunction,
Aws.Lambda.Commands.GetEventSource,
Aws.Lambda.Commands.GetFunction,
Aws.Lambda.Commands.GetFunctionConfiguration,
Aws.Lambda.Commands.InvokeAsync,
Aws.Lambda.Commands.ListEventSources,
Aws.Lambda.Commands.ListFunctions,
Aws.Lambda.Commands.RemoveEventSource,
Aws.Lambda.Commands.UpdateFunctionConfiguration,
Aws.Lambda.Commands.UploadFunction,
Aws.Lambda.Internal.Constraints
other-modules: Aws.Lambda.Internal.Utils
build-depends: base >=4.7 && <4.8,
base-unicode-symbols,
aeson >=0.8.0.2,
aws-general >=0.1,
bytestring >= 0.10.4.0,
containers >= 0.5.5.1,
exceptions >= 0.6.1,
filepath >= 1.3.0.2,
http-types >=0.8.5,
http-client >=0.4.6,
lens >=4.7,
lens-action >=0.1.0.1,
lens-aeson >=1.0.0.3,
mtl >=2.1.3.1,
old-locale >=1.0.0.6,
text >=1.2.0.0,
time >=1.4.2,
wreq >=0.3.0.1,
zip-archive >=0.2.3.5
hs-source-dirs: src
ghc-options: -Wall
default-language: Haskell2010