Skip to content

Commit

Permalink
Polish bevy_reflect no_std support
Browse files Browse the repository at this point in the history
  • Loading branch information
bushrat011899 committed Feb 26, 2025
1 parent 2f38464 commit 6f9dd80
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
7 changes: 4 additions & 3 deletions crates/bevy_reflect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ bevy = ["smallvec", "smol_str"]
debug = ["debug_stack"]

## When enabled, keeps track of the current serialization/deserialization context for better error messages
debug_stack = []
debug_stack = ["std"]

# Integrations

Expand All @@ -46,7 +46,7 @@ smallvec = ["dep:smallvec"]
uuid = ["dep:uuid"]

## Adds reflection support to `wgpu-types` types.
wgpu-types = ["dep:wgpu-types", "std"]
wgpu-types = ["dep:wgpu-types"]

# Platform Compatibility

Expand All @@ -62,6 +62,7 @@ std = [
"smol_str?/std",
"uuid?/std",
"bevy_platform_support/std",
"wgpu-types?/std",
]

## `critical-section` provides the building blocks for synchronization primitives
Expand Down Expand Up @@ -109,7 +110,7 @@ uuid = { version = "1.13.1", default-features = false, optional = true, features
"serde",
] }
variadics_please = "1.1"
wgpu-types = { version = "24", features = ["serde"], optional = true }
wgpu-types = { version = "24", features = ["serde"], optional = true, default-features = false }

[target.'cfg(target_arch = "wasm32")'.dependencies]
uuid = { version = "1.13.1", default-features = false, features = ["js"] }
Expand Down
7 changes: 4 additions & 3 deletions crates/bevy_reflect/src/func/registry.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
use alloc::borrow::Cow;
use bevy_platform_support::collections::HashMap;
use bevy_platform_support::sync::Arc;
use bevy_platform_support::{
collections::HashMap,
sync::{Arc, PoisonError, RwLock, RwLockReadGuard, RwLockWriteGuard},
};
use core::fmt::Debug;
use std::sync::{PoisonError, RwLock, RwLockReadGuard, RwLockWriteGuard};

use crate::func::{
ArgList, DynamicFunction, FunctionRegistrationError, FunctionResult, IntoFunction,
Expand Down

0 comments on commit 6f9dd80

Please sign in to comment.