actix-web/actix-files
dependabot[bot] 6cd9af985b
build(deps): update env_logger requirement from 0.10 to 0.11
Updates the requirements on [env_logger](https://github.com/rust-cli/env_logger) to permit the latest version.
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rust-cli/env_logger/compare/v0.10.0...v0.11.0)

---
updated-dependencies:
- dependency-name: env_logger
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-01-24 14:19:03 +00:00
..
examples docs: add guarded-listings example 2023-10-30 00:03:22 +00:00
src actix-files: fix handling linebreaks in filenames (#3237) 2024-01-10 03:56:15 +00:00
tests apply standard formatting 2023-07-17 02:38:12 +01:00
CHANGES.md chore(actix-files): prepare release 0.6.5 2024-01-10 04:01:14 +00:00
Cargo.toml build(deps): update env_logger requirement from 0.10 to 0.11 2024-01-24 14:19:03 +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 docs(files: update readme from crate docs 2024-01-10 04:03:29 +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));