min_const_generics is in stable now, so we can use it for the array impl:
|
impl<T: $crate::SerdeDiff + serde::Serialize + for<'a> serde::Deserialize<'a>> $crate::SerdeDiff for [T; $len] { |
Other crates have also switched to const generics for array impls (such as
arrayvec).