jsonbb 0.2.3

A binary representation of json value, optimized for parsing and querying.
Documentation
/// Construct a `jsonbb::Value` from a JSON literal.
///
/// ```
/// # use jsonbb::json;
/// #
/// let value = json!({
///     "code": 200,
///     "success": true,
///     "payload": {
///         "features": [
///             "serde",
///             "json"
///         ],
///         "homepage": null
///     }
/// });
/// ```
#[macro_export(local_inner_macros)]
macro_rules! json {
    ($($json:tt)+) => {
        $crate::Value::from($crate::serde_json::json!($($json)+))
    };
}