From 071bbdb84206e39de61215c7eea29727cd964368 Mon Sep 17 00:00:00 2001 From: gigirassy Date: Thu, 28 May 2026 06:00:09 +0200 Subject: [PATCH] Update Cargo.toml --- Cargo.toml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 46ed7ae..289a37f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,12 +4,15 @@ version = "0.1.0" edition = "2021" [dependencies] -mimalloc = { version = "0.1" } +axum = "0.7" tokio = { version = "1", features = ["full"] } -hyper = { version = "1", features = ["full"] } -hyper-util = "0.1" -http-body-util = "0.1" +reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "gzip", "brotli", "deflate"] } +image = { version = "0.25", default-features = false, features = ["jpeg", "png", "webp"] } +mimalloc = "0.1" +anyhow = "1" +serde = { version = "1", features = ["derive"] } +serde_json = "1" bytes = "1" -reqwest = { version = "0.12", features = ["rustls-tls", "gzip", "brotli", "deflate"] } -image = "0.25" -anyhow = "1" \ No newline at end of file +tower-http = { version = "0.5", features = ["trace"] } +tracing = "0.1" +tracing-subscriber = { version = "0.3", features = ["env-filter"] } \ No newline at end of file