1
Fork 0
A serialization/deserialization library for Simplified JSON, the Bitsquid/Stingray flavor of JSON.
Find a file
Lucas Schwiderski f76acf5407
fix: Fix serializing Unicode
The index operator doesn't use the `char` boundaries, but rather
byte boundaries. So I switched back to a simpler, but slightly
less efficient loop that simply adds individual characters to the
output.

It also doesn't escape Unicode anymore, as this shouldn't be an issue
in UTF-8 encoded output files.
2022-12-28 19:48:01 +01:00
src fix: Fix serializing Unicode 2022-12-28 19:48:01 +01:00
tests refactor: Apply clippy suggestions 2022-12-08 22:31:30 +01:00
.gitignore feat: Implement serialization 2022-11-18 09:21:46 +01:00
Cargo.toml version: v0.2.0 2022-11-25 16:09:53 +01:00
CHANGELOG.adoc fix: Fix serializing Unicode 2022-12-28 19:48:01 +01:00
Justfile feat: Implement serialization 2022-11-18 09:21:46 +01:00
LICENSE feat: Implement serialization 2022-11-18 09:21:46 +01:00
README.adoc feat: Implement serialization 2022-11-18 09:21:46 +01:00

Serde SJSON

A serialization/deserialization library for Simplified JSON, specifically, the Bitsquid/Stingray flavor.