1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#![crate_name = "hyper_staticfile"]
#![deny(missing_docs)]
#![deny(warnings)]

//! Static file-serving for [Hyper 0.11](https://github.com/hyperium/hyper).

extern crate futures;
extern crate hyper;
extern crate tokio_core;
extern crate url;

mod requested_path;
mod static_service;

pub use static_service::Static;