staticfile 0.0.3

Static file serving for Iron.
#![crate_name = "staticfile"]
#![deny(missing_docs)]
#![deny(warnings)]
#![cfg_attr(feature = "cache", feature(duration))]

//! Static file-serving handler.

extern crate time;

#[cfg(feature = "cache")]
extern crate filetime;

extern crate iron;
#[macro_use]
extern crate log;
extern crate mount;

pub use static_handler::Static;
#[cfg(feature = "cache")]
pub use static_handler::Cache;

mod requested_path;
mod static_handler;