bevy/tools/ci/src/commands
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
..
bench_check.rs Fix CI bench compile check (#14728) 2024-08-14 13:23:00 +00:00
clippy.rs Small changes to ci tool (#13137) 2024-04-30 00:54:14 +00:00
compile_check_no_std.rs Add no_std support to bevy_reflect (#16256) 2024-12-05 21:15:21 +00:00
compile_check.rs Small changes to ci tool (#13137) 2024-04-30 00:54:14 +00:00
compile_fail.rs Move compile fail tests (#13196) 2024-05-03 13:35:21 +00:00
compile.rs Simpler lint fixes: makes ci lints work but disables a lint for now (#15376) 2024-09-24 11:42:59 +00:00
doc_check.rs Make doc CI use nightly (#16147) 2024-11-07 00:56:22 +00:00
doc_test.rs Small changes to ci tool (#13137) 2024-04-30 00:54:14 +00:00
doc.rs Simpler lint fixes: makes ci lints work but disables a lint for now (#15376) 2024-09-24 11:42:59 +00:00
example_check.rs Small changes to ci tool (#13137) 2024-04-30 00:54:14 +00:00
format.rs Small changes to ci tool (#13137) 2024-04-30 00:54:14 +00:00
lints.rs Simpler lint fixes: makes ci lints work but disables a lint for now (#15376) 2024-09-24 11:42:59 +00:00
mod.rs Add compile-check-no-std Command to CI Tool (#15843) 2024-10-11 10:54:44 +00:00
test_check.rs Small changes to ci tool (#13137) 2024-04-30 00:54:14 +00:00
test.rs Small changes to ci tool (#13137) 2024-04-30 00:54:14 +00:00