forked from open-lambda/open-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 829 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 829 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
[package]
name = "open-lambda-container-proxy"
version = "0.1.0"
authors = ["Kai Mast <[email protected]>"]
edition = "2021"
[dependencies]
tokio = { version="1", features=["signal", "net", "macros", "rt-multi-thread"] }
tokio-util = { version="0.7", features=["codec"] }
futures-util = { version="0.3", features=["sink"] }
reqwest = { version = "0.12", features = ["json"], default-features=false }
log = "0.4"
bincode = "1"
async-once-cell = "0.5"
lazy_static = "1"
open-lambda-proxy-protocol = { path="../bin-functions/proxy-protocol" }
simple-logging = "2"
serde_bytes = "0.11"
cfg-if = "1"
parking_lot = "0.12"
tokio-uring = { git="https://github.com/kaimast/tokio-uring.git" }
tokio-uring-executor = { git="https://github.com/kaimast/tokio-uring-executor.git" }
[profile.release]
debug = true
opt-level = 3
lto = false