forked from awslabs/aws-lambda-web-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
51 lines (47 loc) · 1.19 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
[package]
name = "lambda_web_adapter"
version = "0.6.2"
authors = [
"Harold Sun <[email protected]>",
"David Calavera <[email protected]>",
]
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"
flate2 = "1.0.25"
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"
url = "2.3.1"
[dev-dependencies]
httpmock = "0.6"
hyper-tls = "0.5.0"
http-body-util = "0.1.0-rc.2"
http-body = "0.4.5"
[[bin]]
name = "lambda-adapter"
path = "src/main.rs"
[profile.release]
strip = true