actix-web/actix-files
Rob Ede a4df623b0c
chore: bump env_logger to v0.11
2024-03-03 23:43:54 +00:00
..
examples
src build(deps): bump taiki-e/install-action from 2.26.18 to 2.27.2 (#3294) 2024-02-19 12:31:10 +00:00
tests
CHANGES.md build: bump MSRV to 1.72 2024-02-13 01:24:34 +00:00
Cargo.toml chore: bump env_logger to v0.11 2024-03-03 23:43:54 +00:00
LICENSE-APACHE
LICENSE-MIT
README.md build: bump MSRV to 1.72 2024-02-13 01:24:34 +00: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));