From eaec6d5da77023ae1c549c3bf86589fd6e57b83b Mon Sep 17 00:00:00 2001 From: xfy Date: Fri, 5 Jun 2026 14:51:35 +0800 Subject: [PATCH] deps: add fs feature to tower-http for static file serving --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 61b7fed..b49fb35 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ pulldown-cmark = "0.13" dotenvy = { version = "0.15", optional = true } tracing = { version = "0.1", optional = true } tracing-subscriber = { version = "0.3", optional = true } -tower-http = { version = "0.6", features = ["trace"], optional = true } +tower-http = { version = "0.6", features = ["trace", "fs"], optional = true } rand = { version = "0.8", features = ["getrandom"] } getrandom = { version = "0.2", features = ["js"] } http = "1"