#json #reqwest #pretty

reqwest-pretty-json

Easy way to emit prettified JSON body via reqwest::RequestBuilder

11 releases

0.12.2 Mar 31, 2024
0.11.1 Apr 25, 2021
0.11.0 Jan 9, 2021
0.10.0 Jan 7, 2020
0.1.2 Nov 12, 2018

#144 in HTTP client

Download history 2/week @ 2024-02-21 4/week @ 2024-02-28 249/week @ 2024-03-27 82/week @ 2024-04-03

331 downloads per month

Apache-2.0 OR MIT

9KB
96 lines

reqwest-pretty-json

reqwest provides an easy way to send a JSON formatted HTTP body of the request. However, it gives you zero control of how the serialization is done. Whatever serde_json::to_vec() emits [single condensed string] is going to be used. In vast majority of the case it is good and does the job very well. However, sometimes you may want to have it "prettified". For example, when talking to KV stores (that just keep the bytes you've sent them and do not interpret it in any way) it may be desirable to have your JSON text more human-readable. There is no way to do it directly with reqwest. Of course you can always manually serialize the data structure into anything you want (pretty JSON) and manually set it as request body as well as adding Content-Type: application/json header. This, however, is less nice than the just letting reqwest::RequestBuilder do the right thing.

Exactly for cases like that this crate augments reqwest::RequestBuilder with pretty_json() method.

use reqwest::Client;
use reqwest_pretty_json::PrettyJson;

let data = vec![1, 2, 3];
let client = Client::new();
client
    .post("http://httpbin.org/post")
    .pretty_json(&data)
    .send()
    .unwrap();

Under the hood it uses serde_json::to_vec_pretty() to serialize the data.

Dependencies

~4–17MB
~220K SLoC