This repository has been archived by the owner on May 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
117 lines (113 loc) · 2.25 KB
/
Cargo.toml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "aws_lambda_events"
version = "0.8.5"
description = "AWS Lambda event definitions"
authors = [
"Christian Legnitto <[email protected]>",
"Sam Rijs <[email protected]>",
"David Calavera <[email protected]>",
]
license = "MIT"
homepage = "https://github.com/calavera/aws-lambda-events"
repository = "https://github.com/calavera/aws-lambda-events"
readme = "README.md"
keywords = ["lambda", "aws", "amazon", "events", "S3"]
categories = ["api-bindings", "encoding", "web-programming"]
[dependencies]
base64 = "0.13"
http = "0.2"
http-body = "0.4"
http-serde = "^1"
serde = "^1"
serde_derive = "^1"
serde_with = { version = "^2", features = ["json"], optional = true }
serde_json = "^1"
serde_dynamo = { version = "^4.1", optional = true }
bytes = { version = "1", features = ["serde"] }
chrono = { version = "0.4.23", default-features = false, features = [
"clock",
"serde",
"std",
] }
query_map = { version = "^0.6", features = ["serde", "url-query"] }
flate2 = { version = "1.0.24", optional = true }
[dev-dependencies]
pretty_assertions = "1.3"
[features]
default = [
"activemq",
"alb",
"apigw",
"appsync",
"autoscaling",
"chime_bot",
"clientvpn",
"cloudwatch_events",
"cloudwatch_logs",
"code_commit",
"codebuild",
"codedeploy",
"codepipeline_cloudwatch",
"codepipeline_job",
"cognito",
"config",
"connect",
"dynamodb",
"ecr_scan",
"firehose",
"iam",
"iot",
"iot_1_click",
"iot_button",
"iot_deprecated",
"kafka",
"kinesis",
"kinesis_analytics",
"lambda_function_urls",
"lex",
"rabbitmq",
"s3",
"s3_batch_job",
"ses",
"sns",
"sqs",
"streams",
]
activemq = []
alb = []
apigw = []
appsync = []
autoscaling = []
chime_bot = []
clientvpn = []
cloudwatch_events = []
cloudwatch_logs = ["flate2"]
code_commit = []
codebuild = []
codedeploy = []
codepipeline = []
codepipeline_cloudwatch = []
codepipeline_job = []
cognito = []
config = []
connect = []
dynamodb = ["streams", "serde_dynamo"]
ecr_scan = []
firehose = []
iam = []
iot = ["iam"]
iot_1_click = []
iot_button = []
iot_deprecated = ["iot"]
kafka = []
kinesis = []
kinesis_analytics = ["kinesis"]
lambda_function_urls = []
lex = []
rabbitmq = []
s3 = []
s3_batch_job = ["s3"]
ses = []
sns = ["serde_with"]
sqs = ["serde_with"]
streams = []