Reqwest is built on top of Hyper which includes a header!
macro to create custom headers. Is there a way I can access the header!
macro without explicitly including Hyper as a separate crate?
#[macro_use] extern crate reqwest;
header! { (XRequestGuid, "X-Request-Guid") => [String] }
cannot find macro
header!
in this scope