forked from aws/aws-lambda-web-adapter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (45 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
49 lines (45 loc) · 1.15 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
43
44
45
46
47
48
49
[package]
name = "lambda_web_adapter"
version = "0.6.1"
authors = [
"Harold Sun <sunhua@amazon.com>",
"David Calavera <dcalaver@amazon.com>",
]
edition = "2021"
description = "Run web applications on AWS Lambda"
keywords = ["AWS", "Lambda", "APIGateway", "ALB", "API"]
license = "Apache-2.0"
homepage = "https://github.com/awslabs/aws-lambda-web-adapter"
repository = "https://github.com/awslabs/aws-lambda-web-adapter"
documentation = "https://docs.rs/lambda_web_adapter"
categories = ["web-programming::http-server"]
readme = "README.md"
exclude = ["examples"]
[dependencies]
http = "0.2"
hyper = { version = "0.14", features = ["client"] }
lambda_http = "0.7.3"
tokio = { version = "1.24", features = [
"macros",
"io-util",
"sync",
"rt-multi-thread",
"time",
] }
tokio-retry = "0.3"
tracing = { version = "0.1", features = ["log"] }
tracing-subscriber = { version = "0.3", default-features = false, features = [
"env-filter",
"fmt",
] }
tower = "0.4.13"
encoding_rs = "0.8.31"
mime = "0.3.16"
[dev-dependencies]
httpmock = "0.6"
hyper-tls = "0.5.0"
[[bin]]
name = "lambda-adapter"
path = "src/main.rs"
[profile.release]
strip = true