-
Notifications
You must be signed in to change notification settings - Fork 391
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (39 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
42 lines (39 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
41
42
[package]
name = "lambda-extension"
version = "1.0.4"
edition = "2021"
rust-version = "1.84.0"
authors = [
"David Calavera <dcalaver@amazon.com>",
"Harold Sun <sunhua@amazon.com>",
]
description = "AWS Lambda Extension 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 = ["lambda_runtime_api_client/tracing"]
[dependencies]
async-stream = "0.3"
chrono = { workspace = true, features = ["serde"] }
http = { workspace = true }
http-body-util = { workspace = true }
hyper = { workspace = true, features = ["http1", "client", "server"] }
hyper-util = { workspace = true }
lambda_runtime_api_client = { version = "1.0.3", path = "../lambda-runtime-api-client" }
serde = { version = "1", features = ["derive"] }
serde_json = "^1"
tokio = { version = "1.0", features = [
"macros",
"io-util",
"sync",
"rt-multi-thread",
] }
tokio-stream = "0.1.2"
tower = { workspace = true, features = ["make", "util"] }
tracing = { version = "0.1", features = ["log"] }
[package.metadata.docs.rs]
all-features = true