fix: allow enexpected_cfgs

This commit is contained in:
Sébastien Crozet
2024-05-25 11:11:21 +02:00
committed by Sébastien Crozet
parent 174778067d
commit 4737a96169
2 changed files with 2 additions and 0 deletions

View File

@@ -15,6 +15,7 @@
#![allow(clippy::too_many_arguments)]
#![allow(clippy::needless_range_loop)] // TODO: remove this? I find that in the math code using indices adds clarity.
#![allow(clippy::module_inception)]
#![allow(unexpected_cfgs)] // This happens due to the dim2/dim3/f32/f64 cfg.
#[cfg(all(feature = "dim2", feature = "f32"))]
pub extern crate parry2d as parry;