-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (30 loc) · 857 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (30 loc) · 857 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
[package]
name = "avif-server-rs"
description = "A tool for converting images to AVIF/WebP"
version = "0.1.0"
edition = "2024"
authors = ["Tuxium <ursusfeline07@gmail.com>"]
readme = "README.md"
repository = "https://github.com/LGY07/avif_server_rs/"
license = "MIT"
[dependencies]
actix-web = { version = "4.12", features = ["rustls"] }
anyhow = "1.0"
blake3 = "1.8"
clap = { version = "4.5", features = ["derive"] }
image = { version = "0.25", features = ["rayon"] }
opendal = { version = "0.55", features = ["services-fs", "services-http", "services-s3"] }
ravif = { version = "0.12", features = ["asm"] }
reqwest = "0.12"
rgb = "0.8"
serde = "1.0"
tokio = { version = "1.48", features = ["full"] }
toml = "0.9"
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-tree = "0.4"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1