You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add Deserializer::disable_recursion_limit guarded by an "unbounded_depth" Cargo cfg; this allows parsing arbitrarily deep JSON structures without any consideration for overflowing the stack; see documentation in the link for how to do this safely (#509)
Work around a compounding error message bug when using serde_json in combination with erased-serde (dtolnay/erased-serde#21) that resulted in error messages like:
"trailing comma at line 32 column 41 at line 32 column 41 at line 33 column 37 at line 34 column 33 at line 35 column 29 at line 36 column 25 at line 36 column 25 at line 36 column 25 at line 36 column 25"
Provide a RawValue type which represents a contiguous range of bytes in the input corresponding to one JSON value without parsing that value into any particular data structure (#355)