diff --git a/Cargo.lock b/Cargo.lock index f8e20f8..6da8dd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4191,9 +4191,19 @@ checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags", "bytes", + "futures-core", + "futures-util", "http", + "http-body", + "http-body-util", + "http-range-header", + "httpdate", + "mime", + "mime_guess", "percent-encoding", "pin-project-lite", + "tokio", + "tokio-util", "tower-layer", "tower-service", ] diff --git a/Cargo.toml b/Cargo.toml index 8d80dbf..172c39f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ pbkdf2 = { version = "0.13.0", optional = true, features = ["getrandom", "phc"] rand = "0.10.1" serde = { version = "1.0.228", features = ["derive"] } 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 } tracing = "0.1.44"