//! Pretty-Printed JSON serialize/deserialize function.
//!
//! This module can be used as the value of the `serde(with)` attribute
//! (i.e., `#[serde(with = "htrpc::json_pretty")]`).
use ser;
use ;
use serdeconv;
/// Serializes the value as a pretty printed JSON string.
///
/// This function can be used as the value of the `serde(serialize_with)` attribute
/// (i.e., `#[serde(serialize_with = "htrpc::json_pretty::serialize")]`).
pub use deserialize;