3 releases
0.1.2 | May 17, 2022 |
---|---|
0.1.1 | May 17, 2022 |
0.1.0 | May 17, 2022 |
#575 in #utilities
4KB
jutils
JSON utilities for Rust.
Right now there are two utilities
extend_json_str
: Extends aVec<u8>
with a valid JSON String.extend_json_str_fragment
: Extends aVec<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...