extern crate serde;
extern crate serde_json;
extern crate serde_derive;
extern crate hyper;
// HACK: integration_testing example refers to `nickel::foo`
// and this import helps that resolve rather than requiring `self::nickel::foo`
// which is an oddity due to the include method, which is used as tests in examples
// don't get executed otherwise.
extern crate nickel;
extern crate lazy_static;