mini-static 0.14.3

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

mod bundle;
mod error;
mod handler;
mod minify;
mod minify_cache;
mod reload;
mod resolve;
mod server;
mod watcher;

pub use error::StaticError;
pub use handler::ResponseBody;
pub use minify::{minify, MinifyError};
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::{Broadcaster, ChangeEvent, start_watching};