jutils

license crates.io version documentation

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:

```rust use jutils:*

myjson.extendjsonstr("hello world"); `` Which adds"hello world"to themyjson` vector.

More to come. Stay tuned to this channel...