router 0.5.1

A router for the Iron framework.
Documentation
#![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;