Skip to content

Commit

Permalink
Allow future unexpected_cfgs lint from bytemuck derive.
Browse files Browse the repository at this point in the history
  • Loading branch information
kpreid committed Nov 29, 2024
1 parent 73c1e27 commit f36b0f4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions all-is-cubes/src/save/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f36b0f4

Please sign in to comment.