-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathCargo.toml
125 lines (122 loc) · 2.97 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
118
119
120
121
122
123
124
125
[package]
name = "aws_lambda_events"
version = "0.15.1"
description = "AWS Lambda event definitions"
authors = [
"Christian Legnitto <[email protected]>",
"Sam Rijs <[email protected]>",
"David Calavera <[email protected]>",
]
license = "MIT"
homepage = "https://github.com/awslabs/aws-lambda-rust-runtime"
repository = "https://github.com/awslabs/aws-lambda-rust-runtime"
readme = "README.md"
keywords = ["lambda", "aws", "amazon", "events", "S3"]
categories = ["api-bindings", "encoding", "web-programming"]
edition = "2021"
[dependencies]
base64 = { workspace = true }
bytes = { workspace = true, features = ["serde"], optional = true }
chrono = { workspace = true, optional = true }
flate2 = { version = "1.0.24", optional = true }
http = { workspace = true, optional = true }
http-body = { workspace = true, optional = true }
http-serde = { workspace = true, optional = true }
query_map = { version = "^0.7", features = [
"serde",
"url-query",
], optional = true }
serde = { version = "^1", features = ["derive"] }
serde_with = { version = "^3", features = ["json"], optional = true }
serde_json = "^1"
serde_dynamo = { version = "^4.1", optional = true }
[features]
default = [
"activemq",
"alb",
"apigw",
"appsync",
"autoscaling",
"bedrock_agent_runtime",
"chime_bot",
"clientvpn",
"cloudformation",
"cloudwatch_alarms",
"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",
"secretsmanager",
"sns",
"sqs",
"streams",
"documentdb",
"eventbridge",
]
activemq = []
alb = ["bytes", "http", "http-body", "http-serde", "query_map"]
apigw = ["bytes", "http", "http-body", "http-serde", "iam", "query_map"]
appsync = []
autoscaling = ["chrono"]
bedrock_agent_runtime = []
chime_bot = ["chrono"]
clientvpn = []
cloudformation = []
cloudwatch_alarms = ["chrono"]
cloudwatch_events = ["chrono"]
cloudwatch_logs = ["flate2"]
code_commit = ["chrono"]
codebuild = ["chrono"]
codedeploy = ["chrono"]
codepipeline = []
codepipeline_cloudwatch = ["chrono"]
codepipeline_job = []
cognito = []
config = []
connect = []
dynamodb = ["chrono", "serde_dynamo", "streams"]
ecr_scan = []
firehose = ["chrono"]
iam = []
iot = ["bytes", "http", "http-body", "http-serde", "iam"]
iot_1_click = []
iot_button = []
iot_deprecated = ["iot"]
kafka = ["chrono"]
kinesis = ["chrono"]
kinesis_analytics = ["kinesis"]
lambda_function_urls = ["bytes", "http", "http-body", "http-serde"]
lex = []
rabbitmq = []
s3 = ["bytes", "chrono", "http", "http-body", "http-serde"]
s3_batch_job = ["s3"]
secretsmanager = []
ses = ["chrono"]
sns = ["chrono", "serde_with"]
sqs = ["serde_with"]
streams = []
documentdb = []
eventbridge = ["chrono", "serde_with"]