Crates.io | actix-files |
lib.rs | actix-files |
version | 0.6.6 |
source | src |
created_at | 2019-03-28 20:40:12.661985 |
updated_at | 2024-06-09 19:05:05.034353 |
description | Static file serving for Actix Web |
homepage | https://actix.rs |
repository | https://github.com/actix/actix-web |
max_upload_size | |
id | 124432 |
size | 179,093 |
actix-files
Static 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));