1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
#![deny(missing_docs)]
#![cfg_attr(test, deny(warnings))]

//! `Router` provides fast and flexible routing for Iron.

extern crate iron;
extern crate route_recognizer as recognizer;
extern crate url;

pub use router::{Router, NoRoute, TrailingSlash};
pub use recognizer::Params;
pub use url_for::url_for;

mod router;
mod macros;
mod url_for;