Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2025-06-14 | 850 Bytes | |
serde_with v3.13.0 source code.tar.gz | 2025-06-14 | 215.9 kB | |
serde_with v3.13.0 source code.zip | 2025-06-14 | 298.3 kB | |
Totals: 3 Items | 515.0 kB | 0 |
Added
- Added support for
schemars
v0.9.0 under theschemars_0_9
feature flag by @swlynch99 (#849) - Introduce
SerializeDisplayAlt
derive macro (#833) An alternative to theSerializeDisplay
macro except instead of using the plain formatting likeformat!("{}", ...)
, it serializes with theFormatter::alternate
flag set to true, likeformat!("{:#}", ...)
Changed
- Generalize
serde_with::rust::unwrap_or_skip
to support deserializing references by @beroal (#832) - Bump MSRV to 1.71, since that is required for the
jsonschema
dev-dependency. - Make
serde_conv
available without thestd
feature by @arilou (#839) - Bump MSRV to 1.74, since that is required for
schemars
v0.9.0 by @swlynch99 (#849)
Fixed
- Make the
DurationSeconds
types and other variants more accessible even withoutstd
(#845)