resyncgg / json-stream

A library to parse Newline Delimited JSON values from a byte stream
Apache License 2.0
4 stars 1 forks source link

handle terminating streams, test and clarify delimeter semantics #5

Open tychoish opened 7 months ago

tychoish commented 7 months ago

Incidentally, it appears that escaping of newlines in raw strings (e.g. r#"\n") is (I think?) not handled as well as I'd expect. The serde_json::StreamDeserializer will correctly handle any bounded (strings, documents, arrays) in the stream, (and space separated for nulls and numbers, I presume?).

Closes #1