mini-static 0.16.0

A secure, async static file server with streaming, traversal protection, and connection limits.
Documentation
#![doc = include_str!("../README.md")]

mod css;
mod error;
mod handler;
mod js;
mod reload;
mod resolve;
mod server;
mod source;
mod tool;
mod watcher;

pub use css::{CssOptions, CssTool};
pub use error::StaticError;
pub use handler::ResponseBody;
pub use js::{JsOptions, JsTool};
pub use reload::{reload_event_frame, ChangeType, LIVE_RELOAD_PATH};
pub use resolve::{resolve, resolve_with_canonical_root};
pub use server::{Server, ServerHandle};
pub use watcher::{start_watching, Broadcaster, ChangeEvent};