jutils 0.1.2

JSON Utilities for Rust
Documentation
  • Coverage
  • 0%
    0 out of 4 items documented0 out of 3 items with examples
  • Size
  • Source code size: 4.5 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.05 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 8s Average build duration of successful builds.
  • all releases: 8s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • tidwall/jutils
    3 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • tidwall

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:

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...