Skip to main content

mini_static/
lib.rs

1#![doc = include_str!("../README.md")]
2
3mod bundle;
4mod css_bundler;
5mod error;
6mod handler;
7mod minify;
8mod minify_cache;
9mod reload;
10mod resolve;
11mod server;
12mod source;
13mod watcher;
14
15pub use css_bundler::{bundle_directory_css, CssBundlerError};
16pub use error::StaticError;
17pub use handler::ResponseBody;
18pub use minify::{minify, MinifyError};
19pub use reload::{reload_event_frame, ChangeType, LIVE_RELOAD_PATH};
20pub use resolve::{resolve, resolve_with_canonical_root};
21pub use server::{Server, ServerHandle};
22pub use watcher::{start_watching, Broadcaster, ChangeEvent};