jutils 0.1.0

JSON Utilities for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# jtuils

JSON utilities for Rust.

Right now there is one utility `extend_json_str` which extends a `Vec<u8>` with
a valid JSON string.

For example:

```rust
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*