index : static-web-server.git

ascending towards madness

#[macro_use]
extern crate log;

extern crate iron;
extern crate mime;
extern crate mime_guess;
extern crate time;
extern crate url;

pub mod config;
pub mod error_page;
pub mod gzip;
pub mod helpers;
pub mod logger;
pub mod server;

#[cfg(not(windows))]
pub mod signal_manager;

pub mod staticfile_middleware;
pub mod staticfiles;

pub use config::Options;