jsmn 0.1.5

A minimalistic JSON parser
Documentation
  • Coverage
  • 21.74%
    5 out of 23 items documented0 out of 11 items with examples
  • Size
  • Source code size: 16.48 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.04 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • 95th
jsmn (pronounced like 'jasmine') is Rust port of a minimalistic JSON parser. It can be easily integrated into resource-limited or embedded projects. # Philosophy Most JSON parsers offer you a bunch of functions to load JSON data, parse it and extract any value by its name. jsmn proves that checking the correctness of every JSON packet or allocating temporary objects to store parsed JSON fields often is an overkill. JSON format itself is extremely simple, so why should we complicate it? jsmn is designed to be robust (it should work fine even with erroneous data), fast (it should parse data on the fly), portable. And of course, simplicity is a key feature - simple code style, simple algorithm, simple integration into other projects.