aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index b863807..304c0c0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -12,6 +12,9 @@
#![deny(bare_trait_objects)]
#![warn(missing_docs)] // FIXME: deny that
+#![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)]
#[cfg(all(feature = "dim2", feature = "f32"))]
pub extern crate parry2d as parry;