Skip to content
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.

0.8.0

Compare
Choose a tag to compare
@dtolnay dtolnay released this 22 Aug 20:40
· 684 commits to master since this release
0.8.0
1ae443e
  • 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 use Deserializer::deserialize_any instead.

  • Preserve integers as integers when serialized by serde_yaml::to_value (#98)