1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-04-27 06:18:44 +00:00
actix-web/actix-files
2024-03-03 23:43:54 +00:00
..
examples docs: add guarded-listings example 2023-10-30 00:03:22 +00:00
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 apply standard formatting 2023-07-17 02:38:12 +01:00
Cargo.toml chore: bump env_logger to v0.11 2024-03-03 23:43:54 +00:00
CHANGES.md build: bump MSRV to 1.72 2024-02-13 01:24:34 +00: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 build: bump MSRV to 1.72 2024-02-13 01:24:34 +00:00

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));