This example will provide basic web routing using Iron.
To begin with, you will need to add the Iron dependency to your Cargo.toml file.
[dependencies]
iron = "0.4.*"
We will use Iron's own Router library. For simplicity, the Iron project provides this library as part of the Iron cor...