From 6a5004702b933c4a9cdea7b02c0ba23db9f33796 Mon Sep 17 00:00:00 2001 From: spinline Date: Tue, 3 Feb 2026 21:01:58 +0300 Subject: [PATCH] fix(backend): enable clap env feature --- backend/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index a648b1c..ebb9de0 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -18,7 +18,7 @@ futures = "0.3" quick-xml = { version = "0.31", features = ["serde", "serialize"] } # We might need `tokio-util` for codecs if we implement SCGI manually tokio-util = { version = "0.7", features = ["codec", "io"] } -clap = { version = "4.4", features = ["derive"] } +clap = { version = "4.4", features = ["derive", "env"] } rust-embed = "8.2" mime_guess = "2.0" shared = { path = "../shared" }