-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 711 Bytes
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 711 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
[package]
name = "lambda_server_adapter"
version = "0.0.1"
authors = []
edition = "2021"
description = "Run web servers inside AWS Lambda"
[dependencies]
envy = "0.4.2"
http = "0.2"
hyper = { version = "0.14", features = ["client"] }
lambda_http = "0.8.3"
reqwest = { version = "0.11.22", features = [
"blocking",
"json",
], default-features = false }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0"
tokio = "1.29"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.17", default-features = false, features = [
"env-filter",
"fmt",
] }
url = "2.3"
[[bin]]
name = "lambda-adapter"
path = "src/main.rs"
[profile.release]
strip = true
lto = true
codegen-units = 1