diff --git a/all-is-cubes/src/save/schema.rs b/all-is-cubes/src/save/schema.rs index 90f6038ed..787456739 100644 --- a/all-is-cubes/src/save/schema.rs +++ b/all-is-cubes/src/save/schema.rs @@ -15,6 +15,11 @@ //! (and not, say, as structures with named fields). //! * [`Cow`] is sometimes used to avoid unnecessary clones during serialization. +#![allow( + unexpected_cfgs, + reason = "https://github.com/Lokathor/bytemuck/issues/286" +)] + use alloc::borrow::Cow; use alloc::vec::Vec; use core::num::NonZeroU16;