mirror of
https://codeberg.org/gigirassy/image-proxy/
synced 2026-08-30 15:37:41 +00:00
60 lines
824 B
TOML
60 lines
824 B
TOML
[package]
|
|
name = "image-proxy"
|
|
version = "0.1.1"
|
|
edition = "2021"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
debug = false
|
|
panic = "abort"
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
reqwest = {
|
|
version = "0.12",
|
|
default-features = false,
|
|
features = ["rustls-tls", "gzip", "brotli", "deflate"]
|
|
}
|
|
|
|
image = {
|
|
version = "0.25",
|
|
default-features = false,
|
|
features = ["jpeg", "png", "webp", "gif"]
|
|
}
|
|
|
|
moka = {
|
|
version = "0.12",
|
|
features = ["future"]
|
|
}
|
|
|
|
mimalloc = "0.1"
|
|
|
|
anyhow = "1"
|
|
|
|
serde = {
|
|
version = "1",
|
|
features = ["derive"]
|
|
}
|
|
|
|
serde_json = "1"
|
|
|
|
bytes = "1"
|
|
|
|
tower-http = {
|
|
version = "0.5",
|
|
features = ["trace"]
|
|
}
|
|
|
|
tracing = "0.1"
|
|
|
|
tracing-subscriber = {
|
|
version = "0.3",
|
|
features = ["env-filter"]
|
|
}
|