forked from aws/aws-lambda-rust-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (32 loc) · 631 Bytes
/
Cargo.toml
File metadata and controls
34 lines (32 loc) · 631 Bytes
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
[workspace]
resolver = "2"
members = [
"lambda-http",
"lambda-integration-tests",
"lambda-runtime-api-client",
"lambda-runtime",
"lambda-extension",
"lambda-events",
]
exclude = ["examples"]
[workspace.dependencies]
base64 = "0.22"
bytes = "1"
chrono = { version = "0.4.35", default-features = false, features = [
"clock",
"serde",
"std",
] }
futures = "0.3"
futures-channel = "0.3"
futures-util = "0.3"
http = "1.0"
http-body = "1.0"
http-body-util = "0.1"
http-serde = "2.0"
hyper = "1.0"
hyper-util = "0.1.1"
pin-project-lite = "0.2"
tower = "0.5"
tower-layer = "0.3"
tower-service = "0.3"