mini-static 0.5.0

A secure, async static file server with streaming, traversal protection, and connection limits.
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

mod error;
mod handler;
mod resolve;
mod server;

pub use error::StaticError;
pub use handler::ResponseBody;
pub use resolve::{resolve, resolve_with_canonical_root};
pub use server::{Server, ServerHandle};