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:
parent
83a1c07c01
commit
510efdf905
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user