Crates.io | jutils |
lib.rs | jutils |
version | 0.1.2 |
source | src |
created_at | 2022-05-17 00:38:36.279491 |
updated_at | 2022-05-17 15:19:26.12209 |
description | JSON Utilities for Rust |
homepage | |
repository | https://github.com/tidwall/jutils |
max_upload_size | |
id | 588045 |
size | 4,824 |
JSON utilities for Rust.
Right now there are two utilities
extend_json_str
: Extends a Vec<u8>
with a valid JSON String.extend_json_str_fragment
: Extends a Vec<u8>
with a valid JSON String, but without the surrounding quotes.For example:
use jutils:*
my_json.extend_json_str("hello world");
Which adds "hello world"
to the my_json
vector.
More to come. Stay tuned to this channel...