This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
Releases: dtolnay/serde-yaml
Releases · dtolnay/serde-yaml
0.8.1
0.8.0
-
Reduce compile time of Deserialize impls by instantiating fewer Visitor methods when we know the type of data expected (#96)
This is potentially a breaking change for some handwritten Deserialize impls. For example a Deserialize impl that invokes
Deserializer::deserialize_string
would no longer deserialize successfully from anything but a string in the input data, even if the Visitor impl otherwise supports types other than string. Deserialize impls that support deserializing from multiple different Serde data types need to useDeserializer::deserialize_any
instead. -
Preserve integers as integers when serialized by
serde_yaml::to_value
(#98)