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
This commit is contained in:
theotherphil 2025-06-15 17:50:23 +01:00 committed by GitHub
parent 83a1c07c01
commit 510efdf905
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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;