# Background In `no_std` compatible crates, there is often an `std` feature which will allow access to the standard library. Currently, with the `std` feature _enabled_, the [`std::prelude`](https://doc.rust-lang.org/std/prelude/index.html) is implicitly imported in all modules. With the feature _disabled_, instead the [`core::prelude`](https://doc.rust-lang.org/core/prelude/index.html) is implicitly imported. This creates a subtle and pervasive issue where `alloc` items _may_ be implicitly included (if `std` is enabled), or must be explicitly included (if `std` is not enabled). # Objective - Make the implicit imports for `no_std` crates consistent regardless of what features are/not enabled. ## Solution - Replace the `cfg_attr` "double negative" `no_std` attribute with conditional compilation to _include_ `std` as an external crate. ```rust // Before #![cfg_attr(not(feature = "std"), no_std)] // After #![no_std] #[cfg(feature = "std")] extern crate std; ``` - Fix imports that are currently broken but are only now visible with the above fix. ## Testing - CI ## Notes I had previously used the "double negative" version of `no_std` based on general consensus that it was "cleaner" within the Rust embedded community. However, this implicit prelude issue likely was considered when forming this consensus. I believe the reason why is the items most affected by this issue are provided by the `alloc` crate, which is rarely used within embedded but extensively used within Bevy.
61 lines
1.5 KiB
Rust
61 lines
1.5 KiB
Rust
#![doc = include_str!("../README.md")]
|
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
|
#![doc(
|
|
html_logo_url = "https://bevyengine.org/assets/icon.png",
|
|
html_favicon_url = "https://bevyengine.org/assets/icon.png"
|
|
)]
|
|
#![no_std]
|
|
|
|
#[cfg(feature = "std")]
|
|
extern crate std;
|
|
|
|
#[cfg(feature = "alloc")]
|
|
extern crate alloc;
|
|
|
|
#[cfg(feature = "bevy-support")]
|
|
pub mod commands;
|
|
/// The basic components of the transform crate
|
|
pub mod components;
|
|
|
|
/// Transform related bundles
|
|
#[cfg(feature = "bevy-support")]
|
|
pub mod bundles;
|
|
|
|
/// Transform related traits
|
|
pub mod traits;
|
|
|
|
/// Transform related plugins
|
|
#[cfg(feature = "bevy-support")]
|
|
pub mod plugins;
|
|
|
|
/// [`GlobalTransform`]: components::GlobalTransform
|
|
/// Helpers related to computing global transforms
|
|
#[cfg(feature = "bevy-support")]
|
|
pub mod helper;
|
|
/// Systems responsible for transform propagation
|
|
#[cfg(feature = "bevy-support")]
|
|
pub mod systems;
|
|
|
|
/// The transform prelude.
|
|
///
|
|
/// This includes the most common types in this crate, re-exported for your convenience.
|
|
#[doc(hidden)]
|
|
#[expect(deprecated)]
|
|
pub mod prelude {
|
|
#[doc(hidden)]
|
|
pub use crate::components::*;
|
|
|
|
#[cfg(feature = "bevy-support")]
|
|
#[doc(hidden)]
|
|
pub use crate::{
|
|
bundles::TransformBundle,
|
|
commands::BuildChildrenTransformExt,
|
|
helper::TransformHelper,
|
|
plugins::{TransformPlugin, TransformSystem},
|
|
traits::TransformPoint,
|
|
};
|
|
}
|
|
|
|
#[cfg(feature = "bevy-support")]
|
|
pub use prelude::{TransformPlugin, TransformPoint, TransformSystem};
|