From: Chris Morgan Date: Tue, 25 Jan 2022 03:12:16 +0000 (+1100) Subject: Make TypeIdHasher safe, bump MSRV X-Git-Tag: 1.0.0-beta.1~19 X-Git-Url: https://git.chrismorgan.info/anymap/commitdiff_plain/7866ca8d779805dc3a3134f2d247889a1721633c?hp=7866ca8d779805dc3a3134f2d247889a1721633c Make TypeIdHasher safe, bump MSRV Wait a few years and nice things stabilise! • u64::from_ne_bytes([u8; 8]) is stable in 1.32.0 • TryFrom<&[u8]> for [u8; 8] is stable in 1.34.0 (There are other things I’m touching today that also require a more mild MSRV bump, but this is the most I *need* at this time.) ---