1
Fork 0
Commit graph

23 commits

Author SHA1 Message Date
609c711e3f
Merge pull request 'Implement generic writer target' (#12) from feat/to-writer into master
* feat/to-writer:
  Implement generic writer target
2024-03-21 10:17:29 +01:00
5ec97dab43
Implement generic writer target
Implements `to_writer` and `to_vec` functions.
2024-03-21 10:13:45 +01:00
73d2b23ce5 Merge pull request 'fix(parser): Fix parsing CRLF' (#11) from issue/10 into master
Reviewed-on: #11
2023-03-15 21:31:06 +01:00
66e708c9e6
fix(parser): Fix parsing CRLF 2023-03-15 21:30:19 +01:00
6e413b7bf5
version: v1.0.0 2023-03-10 11:27:59 +01:00
6d052fdd66
chore: Update crates 2023-03-10 11:26:26 +01:00
702b2e4411
fix(ser): Fix serializing certain escaped characters
Fixes #7.
Closes #9.
2023-03-10 10:59:03 +01:00
516ddd1b08
feat: Implement literal strings
Closes #5.
2023-03-10 10:42:54 +01:00
81213f7927
fix: Fix serializing strings containing :
Fixes #8.
2023-03-03 17:51:54 +01:00
e94218d8f5
version: v0.2.4 2023-03-01 19:48:08 +01:00
1ca19b4dda
fix(parser): Fix incorrect parsing of unquoted strings
Closes #4.
2023-03-01 19:31:18 +01:00
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