![]() # Objective `bevy_ptr` works just fine without `std`. Mark it as `no_std`. This should generally be useful for non-bevy use cases, but it also marginally speeds up compilation by allowing the crate to compile without loading the std-lib. ## Solution Replace `std` with `core`. Added `#![no_std]` to the crate and to the crate's tags. Also added a missing `#![warn(missing_docs)]` that the other crates have. |
||
---|---|---|
.. | ||
lib.rs |