1
Fork 0
Commit graph

12 commits

Author SHA1 Message Date
a6ef5a914e
version: v0.2.3 2023-02-24 11:27:54 +01:00
25b4083379
Merge branch 'fix/backslash'
* fix/backslash:
  fix(parser): Support backslashes in delimited strings
2023-02-24 11:26:27 +01:00
81896339a3
fix(parser): Support backslashes in delimited strings
Fixes #2.
2023-02-24 11:15:17 +01:00
fc5d8b25fb
version: v0.2.2 2023-02-18 18:37:37 +01:00
5a367bc478
fix: Fix deserializing arrays and structs
I'm still not sure when `deserialize_any` is called over one of the
specific variants, but it seems like I do have do make `deserialize_any`
aware of all value types.

Fixes #1.
2023-02-18 18:28:44 +01:00
39486e8503
version: v0.2.1 2022-12-28 19:48:42 +01:00
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
ded56befb2
refactor: Apply clippy suggestions 2022-12-08 22:31:30 +01:00
e037ef7659
version: v0.2.0 2022-11-25 16:09:53 +01:00
d4ea35d273
feat: Implement deserialization 2022-11-25 16:08:58 +01:00
b53949d5df
version: v0.1.0 2022-11-18 09:24:33 +01:00
502c2a2986
feat: Implement serialization 2022-11-18 09:21:46 +01:00