areq-json 0.1.0-alpha5

Extension of the areq crate for working with JSON
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg_attr(doc, doc = include_str!("../README.md"))]
#![allow(async_fn_in_trait)]

mod body;
mod proto;

/// The crate's prelude.
pub mod prelude {
    pub use crate::{Json, JsonBodyExt as _};
}

pub use crate::{body::JsonBodyExt, proto::Json};