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
make Serializer and Deserializer pub and usable (#72)
* make Serializer/Deserializer pub
This is required when using serde_json_core with code that is
generic over the serde implementation, i.e. code that wants to
instantiate the Serializer/Deserializer, in the way done in
`de::from_slice` and `ser::to_slice`.
This also adds public getters for the Serializer.current_length
and Deserializer.index members.
Two obsolete/unused impls on the `Unreachable` have been removed.
* renames
* improve docs
* bump MSRV to 1.56.0
there is a MSRV bump somwhere in this dependency bump:
Updating proc-macro2 v1.0.47 -> v1.0.66
Updating quote v1.0.23 -> v1.0.32
Updating serde v1.0.100 -> v1.0.175
Updating serde_derive v1.0.100 -> v1.0.175
Updating syn v1.0.109 -> v2.0.27
* fix wrong MSRV in README and src/lib.rs
0 commit comments