static 0.0.4

Static file serving for Iron.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![crate_name = "static"]
#![deny(missing_docs)]
#![deny(warnings)]
#![feature(core, std_misc, path_ext, fs_time)]

//! Static file-serving handler.

extern crate time;

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

pub use static_handler::{Static, Cache};

mod requested_path;
mod static_handler;