-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (44 loc) · 898 Bytes
/
Copy pathCargo.toml
File metadata and controls
50 lines (44 loc) · 898 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "image"
version = "0.1.6"
edition = "2024"
[dependencies]
image = { version = "0.25.9" }
reqwest = { version = "0.13.2", features = [
"brotli",
"gzip",
"http2",
"zstd",
"deflate",
] }
serde = { version = "1.0.228", features = ["derive"] }
bytes = "1.11.1"
url = "2.5.8"
axum = { version = "0.8.8", default-features = false, features = [
"query",
"tokio",
"macros",
"http2",
"json",
] }
tokio = { version = "1.49.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", default-features = false, features = [
"fmt",
"env-filter",
] }
[dependencies.lambda_http]
version = "1.0.2"
optional = true
[features]
lambda = ["lambda_http"]
[[bin]]
name = "image"
path = "src/main.rs"
[[bin]]
name = "lambda"
path = "src/lambda.rs"
required-features = ["lambda"]
[profile.release]
strip = true
panic = "abort"