jso 1.1.0

No-BS, no-bloat json library.
Documentation
  • Coverage
  • 64%
    16 out of 25 items documented1 out of 10 items with examples
  • Size
  • Source code size: 56.6 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 3.89 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 17s Average build duration of successful builds.
  • all releases: 17s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • ZenPZero/jso
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ZenPZero

jso

No-BS, no-bloat json library.

crates.io | API Docs (docs.rs) | Changelog | License

Installation

cargo add jso@=1.1.0

or

Cargo.toml

[dependencies]
jso = "=1.1.0"

or

[dependencies.jso]
version = "=1.1.0"

Examples

For complete examples, see the examples directory.

Parsing

let obj = jso::parse(r#"
{
  "Hello": "World"
}
"#).unwrap();
assert_eq!(obj["Hello"], "World".into());
println!("{obj}");