From 510efdf9052affc9607fd0b7bb27d74d569a1026 Mon Sep 17 00:00:00 2001 From: theotherphil Date: Sun, 15 Jun 2025 17:50:23 +0100 Subject: [PATCH] deny(missing_docs) for bevy_mikktspace (#19654) # Objective Remove allow(missing_docs) from bevy_mikktspace and add a simple top-level doc comment, towards https://github.com/bevyengine/bevy/issues/3492 --- crates/bevy_mikktspace/src/lib.rs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/crates/bevy_mikktspace/src/lib.rs b/crates/bevy_mikktspace/src/lib.rs index f74e05098b..12efbf5d62 100644 --- a/crates/bevy_mikktspace/src/lib.rs +++ b/crates/bevy_mikktspace/src/lib.rs @@ -7,9 +7,7 @@ unsafe_op_in_unsafe_fn, clippy::all, clippy::undocumented_unsafe_blocks, - clippy::ptr_cast_constness, - // FIXME(15321): solve CI failures, then replace with `#![expect()]`. - missing_docs + clippy::ptr_cast_constness )] #![cfg_attr(docsrs, feature(doc_auto_cfg))] #![doc( @@ -18,6 +16,10 @@ )] #![no_std] +//! An implementation of [Mikkelsen's algorithm] for tangent space generation. +//! +//! [Mikkelsen's algorithm]: http://www.mikktspace.com + #[cfg(feature = "std")] extern crate std;