json-streaming 1.0.3

a library for reading and writing JSON from / to a stream without the need to materialize the data in memory. Provides both blocking and async APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Changelog

## Version 1.0.3
* add `JsonReader::expect_end_of_stream()`

## Version 1.0.2
* fix typo in hyperlink to changelog

## Version 1.0.1
* add convenience API for creating parse errors in `JsonReader`
* merge `JsonParseError::Token` and `JsonParseError::Parse`
* add `JsonReader::expect_end_object()` and `JsonReader::expect_end_array()`
* rename `JsonReader::expect_next_*` to `JsonReader::expect_*`
* add convenience API for reading homogeneous arrays: `JsonReader::expect_*_or_end_array()`