Enable fs feature on tower-http

This commit is contained in:
2026-06-30 21:10:29 -04:00
parent 9de0b13ee8
commit c9b7bbfece
2 changed files with 11 additions and 1 deletions

10
Cargo.lock generated
View File

@@ -4191,9 +4191,19 @@ checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"bytes", "bytes",
"futures-core",
"futures-util",
"http", "http",
"http-body",
"http-body-util",
"http-range-header",
"httpdate",
"mime",
"mime_guess",
"percent-encoding", "percent-encoding",
"pin-project-lite", "pin-project-lite",
"tokio",
"tokio-util",
"tower-layer", "tower-layer",
"tower-service", "tower-service",
] ]

View File

@@ -24,7 +24,7 @@ pbkdf2 = { version = "0.13.0", optional = true, features = ["getrandom", "phc"]
rand = "0.10.1" rand = "0.10.1"
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
thiserror = "2.0.18" thiserror = "2.0.18"
tower-http = { version = "0.7.0", optional = true } tower-http = { version = "0.7.0", optional = true, features = ["fs"] }
tower-sessions-redis-store = { version = "0.16.0", optional = true } tower-sessions-redis-store = { version = "0.16.0", optional = true }
tracing = "0.1.44" tracing = "0.1.44"