All Versions
30
Latest Version
Avg Release Cycle
22 days
Latest Release
1232 days ago

Changelog History
Page 1

  • v1.0.118 Changes

    December 05, 2020
    • ๐Ÿ‘Œ Support serialization of core::num::Wrapping in no_std mode (#1926, thanks @attente)
  • v1.0.117 Changes

    October 15, 2020
    • ๐Ÿ‘ Allow serialization of std::net::SocketAddrV6 to include a scope id if present (based on rust-lang/rust#77426)
  • v1.0.116 Changes

    September 11, 2020
    • ๐Ÿ›  Fix deserialization of IpAddr, SocketAddr, Bound, Result, OsString in formats which process variant identifiers as u64 (#1888, thanks @joshtriplett)
  • v1.0.115 Changes

    August 10, 2020
    • ๐Ÿ‘Œ Support #[serde(flatten)] on a field whose type is a type parameter and concrete type is () (#1873)
  • v1.0.114 Changes

    June 22, 2020
    • ๐Ÿ‘Œ Improve packed repr matching to support deriving Serialize for structs having repr(C, packed) (#1813, thanks @TannerRogalsky)
  • v1.0.113 Changes

    June 19, 2020
    • ๐Ÿ‘Œ Improve diagnostic when a serde trait is not implemented (#1827, thanks @taiki-e)
  • v1.0.112 Changes

    June 14, 2020
    • ๐Ÿ‘Œ Support serde(flatten) on map types where the Serializer only works with serialize_entry (#1837)
  • v1.0.111 Changes

    May 30, 2020
    • ๐Ÿ–จ Process borrowed lifetimes inside of interpolated macro_rules metavariables, such as in the case of #[derive(Deserialize)] struct S<'a> { field: $field } (#1821)
  • v1.0.110 Changes

    May 10, 2020
    • ๐Ÿ‘Œ Support deriving Serialize impl for a repr(packed) struct (#1791, thanks @alvardes)
  • v1.0.109 Changes

    May 10, 2020
    • ๐Ÿ‘ Allow adjacently tagged newtype variants containing Option to omit the content field when deserializing (#1553, #1706, thanks @zth0)
    • Avoid panicking when a SystemTime older than UNIX_EPOCH is serialized (#1702, thanks @hjiayz)