actix-web/actix-files
Joel Wurtz f852f6bd47
Merge 8a33464182 into 3f9d88f859
2025-07-02 15:47:48 +01:00
..
examples docs: add guarded-listings example 2023-10-30 00:03:22 +00:00
src Merge 8a33464182 into 3f9d88f859 2025-07-02 15:47:48 +01:00
tests apply standard formatting 2023-07-17 02:38:12 +01:00
CHANGES.md feat(files): remove block on, as it does more harm than good here 2024-12-13 15:53:13 +01:00
Cargo.toml chore: narrow tokio dep to account for RUSTSEC-2025-0023 2025-05-10 06:09:51 +01:00
LICENSE-APACHE add license files 2019-06-01 17:25:29 +06:00
LICENSE-MIT add license files 2019-06-01 17:25:29 +06:00
README.md chore(actix-files): prepare release 0.6.6 2024-06-09 19:45:14 +01:00

README.md

actix-files

crates.io Documentation Version License
dependency status Download Chat on Discord

Static file serving for Actix Web.

Provides a non-blocking service for serving static files from disk.

Examples

use actix_web::App;
use actix_files::Files;

let app = App::new()
    .service(Files::new("/static", ".").prefer_utf8(true));