| Crates.io | actix-files |
| lib.rs | actix-files |
| version | 0.6.8 |
| created_at | 2019-03-28 20:40:12.661985+00 |
| updated_at | 2025-09-15 09:48:35.497959+00 |
| description | Static file serving for Actix Web |
| homepage | https://actix.rs |
| repository | https://github.com/actix/actix-web |
| max_upload_size | |
| id | 124432 |
| size | 192,372 |
actix-filesStatic file serving for Actix Web.
Provides a non-blocking service for serving static files from disk.
use actix_web::App;
use actix_files::Files;
let app = App::new()
.service(Files::new("/static", ".").prefer_utf8(true));