Releases: jonasbb/serde_with
Releases · jonasbb/serde_with
serde_with v1.6.2
Added
-
New function
serde_with::rust::deserialize_ignore_any.
This function allows deserializing any data and returns the default value of the type.
This can be used in conjunction with#[serde(other)]to allow deserialization of unknown data carrying enum variants.Thanks to @lovasoa for suggesting and implementing it.
serde_with v1.6.1
Added
- Add new types similar to
DurationSecondsandTimestampSecondsbut for base units of milliseconds, microseconds, and nanoseconds.
The*WithFracvariants also exist. - Add
SerializeAsimplementation for references.
Changed
- Release
Sizedtrait bound fromAs,Same,SerializeAs, andSerializeAsWrap.
Only the serialize part is relaxed.