bevy/crates/bevy_reflect/src
Zachary Harrold bf765e61b5
Add no_std support to bevy_reflect (#16256)
# Objective

- Contributes to #15460

## Solution

- Added `std` feature (enabled by default)

## Testing

- CI
- `cargo check -p bevy_reflect --no-default-features --target
"x86_64-unknown-none"`
- UEFI demo application runs with this branch of `bevy_reflect`,
allowing `derive(Reflect)`

## Notes

- The [`spin`](https://crates.io/crates/spin) crate has been included to
provide `RwLock` and `Once` (as an alternative to `OnceLock`) when the
`std` feature is not enabled. Another alternative may be more desirable,
please provide feedback if you have a strong opinion here!
- Certain items (`Box`, `String`, `ToString`) provided by `alloc` have
been added to `__macro_exports` as a way to avoid `alloc` vs `std`
namespacing. I'm personally quite annoyed that we can't rely on `alloc`
as a crate name in `std` environments within macros. I'd love an
alternative to my approach here, but I suspect it's the least-bad
option.
- I would've liked to have an `alloc` feature (for allocation-free
`bevy_reflect`), unfortunately, `erased_serde` unconditionally requires
access to `Box`. Maybe one day we could design around this, but for now
it just means `bevy_reflect` requires `alloc`.

---------

Co-authored-by: Gino Valente <49806985+MrGVSV@users.noreply.github.com>
Co-authored-by: Alice Cecile <alice.i.cecile@gmail.com>
2024-12-05 21:15:21 +00:00
..
enums Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
func Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
impls Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
path Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
serde Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
array.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
attributes.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
fields.rs Add core and alloc over std Lints (#15281) 2024-09-27 00:59:59 +00:00
from_reflect.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
generics.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
kind.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
lib.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
list.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
map.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
reflect.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
reflectable.rs bevy_reflect: Add Reflectable trait (#5772) 2024-09-18 00:36:41 +00:00
remote.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
set.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
std_traits.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
struct_trait.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
tuple.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
tuple_struct.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
type_info.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
type_info_stack.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
type_path.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
type_registry.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
utility.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00