tiny-serde 0.1.2

A tiny library to serialize and deserialize to/from JSON
Documentation
  • Coverage
  • 0%
    0 out of 35 items documented0 out of 9 items with examples
  • Size
  • Source code size: 24.75 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.52 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 13s Average build duration of successful builds.
  • all releases: 13s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • crat1985

A tiny serde_json alternative with no dependencies.

This library is still WIP

Features

  • Serialization from Value to JSON String
    • Basic implementation
    • Patch issue with " and \ in Value
  • Deserialization from JSON String to Value
  • Types
    • String
    • Array
    • Object
    • Number
    • Boolean
    • Null
  • Traits
    • Serialize
    • Deserialize
  • Derive macros
    • Serialize
      • Basic implementation
    • Deserialize