-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (71 loc) · 1.89 KB
/
Cargo.toml
File metadata and controls
73 lines (71 loc) · 1.89 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "diet-lambda"
version = "0.1.0"
edition = "2024"
rust-version = "1.91"
[dependencies]
anyhow = "1"
async-compression = { version = "0.4.40", features = ["gzip", "zstd", "tokio"] }
axum = { version = "0.8.7", default-features = false, features = [
"tokio",
"json",
"http1",
"http2",
] }
bytes = "1"
cfg-if = "1"
chrono = { version = "0.4.43", features = ["serde"] }
const-hex = { version = "1.17.0", features = ["serde"] }
flate2 = "1"
futures-util = "0.3"
http-body-util = { version = "0.1.3", features = [] }
hyper = { version = "1.8.1", features = ["client", "server", "http1", "http2"] }
hyper-tls = { version = "0.6.0", features = ["alpn"] }
hyper-util = { version = "0.1.19", features = [
"tokio",
"client-legacy",
"http1",
"http2",
] }
lambda-extension = { git = "https://github.com/aws/aws-lambda-rust-runtime", default-features = false, features = [
] }
lru = { version = "0.16.3", default-features = false, features = [] }
opentelemetry-proto = { version = "0.31.0", default-features = false, features = [
"trace",
"metrics",
"logs",
"profiles",
"gen-tonic",
"with-serde",
] }
pin-project-lite = { version = "0.2.16", features = [] }
prost = { version = "0.14.1", features = [] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1.48.0", features = [
"rt",
"net",
"time",
"fs",
"sync",
"signal",
] }
tokio-util = { version = "0.7.17", features = ["rt", "io"] }
tonic = { version = "0.14.2", default-features = false, features = [
"router",
"codegen",
"gzip",
"zstd",
] }
tower = { version = "0.5.2", features = [] }
tower-http = { version = "0.6.8", features = [
"decompression-gzip",
"decompression-zstd",
"follow-redirect",
] }
uuid = { version = "1.20.0", features = ["v4"] }
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"