-
Notifications
You must be signed in to change notification settings - Fork 390
Expand file tree
/
Copy pathCargo.toml
More file actions
40 lines (37 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
40 lines (37 loc) · 1.18 KB
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
[package]
name = "lambda_runtime_api_client"
version = "1.0.3"
edition = "2021"
rust-version = "1.84.0"
authors = [
"David Calavera <dcalaver@amazon.com>",
"Harold Sun <sunhua@amazon.com>",
]
description = "AWS Lambda Runtime interaction API"
license = "Apache-2.0"
repository = "https://github.com/aws/aws-lambda-rust-runtime"
categories = ["web-programming::http-server"]
keywords = ["AWS", "Lambda", "API"]
readme = "README.md"
[features]
default = ["tracing"]
tracing = ["dep:tracing", "dep:tracing-subscriber"]
[dependencies]
bytes = { workspace = true }
futures-channel = { workspace = true }
futures-util = { workspace = true }
http = { workspace = true }
http-body = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true, features = ["http1", "client"] }
hyper-util = { workspace = true, features = [
"client",
"client-legacy",
"http1",
"tokio",
] }
tower = { workspace = true, features = ["util"] }
tracing = { version = "0.1", features = ["log"], optional = true }
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "json", "env-filter"], optional = true }
[package.metadata.docs.rs]
all-features = true