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,
|
unsafe_op_in_unsafe_fn,
|
||||||
clippy::all,
|
clippy::all,
|
||||||
clippy::undocumented_unsafe_blocks,
|
clippy::undocumented_unsafe_blocks,
|
||||||
clippy::ptr_cast_constness,
|
clippy::ptr_cast_constness
|
||||||
// FIXME(15321): solve CI failures, then replace with `#![expect()]`.
|
|
||||||
missing_docs
|
|
||||||
)]
|
)]
|
||||||
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
||||||
#![doc(
|
#![doc(
|
||||||
@ -18,6 +16,10 @@
|
|||||||
)]
|
)]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
|
//! An implementation of [Mikkelsen's algorithm] for tangent space generation.
|
||||||
|
//!
|
||||||
|
//! [Mikkelsen's algorithm]: http://www.mikktspace.com
|
||||||
|
|
||||||
#[cfg(feature = "std")]
|
#[cfg(feature = "std")]
|
||||||
extern crate std;
|
extern crate std;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user