grillon 0.3.0

Grillon offers an elegant and natural way to approach end-to-end HTTP API testing in Rust.
Documentation
#![doc = include_str!("../README.md")]

pub mod assert;
mod error;
mod grillon;
pub mod request;
pub mod response;
mod url;

#[doc(inline)]
pub use self::{
    assert::Assert,
    error::{Error, Result},
    grillon::Grillon,
    request::Request,
    response::Response,
};

pub use hyper::{header, Method, StatusCode};
pub use serde_json::{json, Value};