Strip unused features from bevy_asset
dependencies (#18979)
# Objective - Contributes to #18978 ## Solution - Disable default features on all dependencies in `bevy_asset` and explicitly enable ones that are required. - Remove `compile_error` caused by enabling `file_watcher` without `multi_threaded` by including `multi_threaded` in `file_watcher`. ## Testing - CI --- ## Notes No breaking changes here, just a little cleaning before the more controversial changes for `no_std` support. --------- Co-authored-by: François Mockers <mockersf@gmail.com>
This commit is contained in:
parent
65f7b05841
commit
ea7e868f5c
@ -11,7 +11,7 @@ keywords = ["bevy"]
|
|||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
file_watcher = ["notify-debouncer-full", "watch"]
|
file_watcher = ["notify-debouncer-full", "watch", "multi_threaded"]
|
||||||
embedded_watcher = ["file_watcher"]
|
embedded_watcher = ["file_watcher"]
|
||||||
multi_threaded = ["bevy_tasks/multi_threaded"]
|
multi_threaded = ["bevy_tasks/multi_threaded"]
|
||||||
asset_processor = []
|
asset_processor = []
|
||||||
@ -19,38 +19,50 @@ watch = []
|
|||||||
trace = []
|
trace = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy_app = { path = "../bevy_app", version = "0.16.0-dev" }
|
bevy_app = { path = "../bevy_app", version = "0.16.0-dev", default-features = false, features = [
|
||||||
|
"bevy_reflect",
|
||||||
|
] }
|
||||||
bevy_asset_macros = { path = "macros", version = "0.16.0-dev" }
|
bevy_asset_macros = { path = "macros", version = "0.16.0-dev" }
|
||||||
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-dev" }
|
bevy_ecs = { path = "../bevy_ecs", version = "0.16.0-dev", default-features = false }
|
||||||
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-dev", features = [
|
bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-dev", default-features = false, features = [
|
||||||
"uuid",
|
"uuid",
|
||||||
] }
|
] }
|
||||||
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-dev" }
|
bevy_tasks = { path = "../bevy_tasks", version = "0.16.0-dev", default-features = false, features = [
|
||||||
bevy_utils = { path = "../bevy_utils", version = "0.16.0-dev" }
|
"async_executor",
|
||||||
|
] }
|
||||||
|
bevy_utils = { path = "../bevy_utils", version = "0.16.0-dev", default-features = false }
|
||||||
bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-features = false, features = [
|
bevy_platform = { path = "../bevy_platform", version = "0.16.0-dev", default-features = false, features = [
|
||||||
"std",
|
"std",
|
||||||
] }
|
] }
|
||||||
|
|
||||||
stackfuture = "0.3"
|
stackfuture = { version = "0.3", default-features = false }
|
||||||
atomicow = "1.0"
|
atomicow = { version = "1.0", default-features = false, features = ["std"] }
|
||||||
async-broadcast = "0.7.2"
|
async-broadcast = { version = "0.7.2", default-features = false }
|
||||||
async-fs = "2.0"
|
async-fs = { version = "2.0", default-features = false }
|
||||||
async-lock = "3.0"
|
async-lock = { version = "3.0", default-features = false }
|
||||||
bitflags = { version = "2.3", features = ["serde"] }
|
bitflags = { version = "2.3", default-features = false }
|
||||||
crossbeam-channel = "0.5"
|
crossbeam-channel = { version = "0.5", default-features = false, features = [
|
||||||
downcast-rs = { version = "2", default-features = false, features = ["std"] }
|
"std",
|
||||||
disqualified = "1.0"
|
] }
|
||||||
either = "1.13"
|
downcast-rs = { version = "2", default-features = false }
|
||||||
futures-io = "0.3"
|
disqualified = { version = "1.0", default-features = false }
|
||||||
futures-lite = "2.0.1"
|
either = { version = "1.13", default-features = false }
|
||||||
blake3 = "1.5"
|
futures-io = { version = "0.3", default-features = false }
|
||||||
parking_lot = { version = "0.12", features = ["arc_lock", "send_guard"] }
|
futures-lite = { version = "2.0.1", default-features = false }
|
||||||
ron = "0.8"
|
blake3 = { version = "1.5", default-features = false }
|
||||||
serde = { version = "1", features = ["derive"] }
|
parking_lot = { version = "0.12", default-features = false, features = [
|
||||||
|
"arc_lock",
|
||||||
|
"send_guard",
|
||||||
|
] }
|
||||||
|
ron = { version = "0.8", default-features = false }
|
||||||
|
serde = { version = "1", default-features = false, features = ["derive"] }
|
||||||
thiserror = { version = "2", default-features = false }
|
thiserror = { version = "2", default-features = false }
|
||||||
derive_more = { version = "1", default-features = false, features = ["from"] }
|
derive_more = { version = "1", default-features = false, features = ["from"] }
|
||||||
uuid = { version = "1.13.1", features = ["v4"] }
|
uuid = { version = "1.13.1", default-features = false, features = [
|
||||||
tracing = { version = "0.1", default-features = false, features = ["std"] }
|
"v4",
|
||||||
|
"serde",
|
||||||
|
] }
|
||||||
|
tracing = { version = "0.1", default-features = false }
|
||||||
|
|
||||||
[target.'cfg(target_os = "android")'.dependencies]
|
[target.'cfg(target_os = "android")'.dependencies]
|
||||||
bevy_window = { path = "../bevy_window", version = "0.16.0-dev" }
|
bevy_window = { path = "../bevy_window", version = "0.16.0-dev" }
|
||||||
@ -77,7 +89,7 @@ bevy_reflect = { path = "../bevy_reflect", version = "0.16.0-dev", default-featu
|
|||||||
] }
|
] }
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
notify-debouncer-full = { version = "0.5.0", optional = true }
|
notify-debouncer-full = { version = "0.5.0", default-features = false, optional = true }
|
||||||
|
|
||||||
[lints]
|
[lints]
|
||||||
workspace = true
|
workspace = true
|
||||||
|
@ -228,13 +228,6 @@ use bevy_reflect::{FromReflect, GetTypeRegistration, Reflect, TypePath};
|
|||||||
use core::any::TypeId;
|
use core::any::TypeId;
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
|
|
||||||
#[cfg(all(feature = "file_watcher", not(feature = "multi_threaded")))]
|
|
||||||
compile_error!(
|
|
||||||
"The \"file_watcher\" feature for hot reloading requires the \
|
|
||||||
\"multi_threaded\" feature to be functional.\n\
|
|
||||||
Consider either disabling the \"file_watcher\" feature or enabling \"multi_threaded\""
|
|
||||||
);
|
|
||||||
|
|
||||||
/// Provides "asset" loading and processing functionality. An [`Asset`] is a "runtime value" that is loaded from an [`AssetSource`],
|
/// Provides "asset" loading and processing functionality. An [`Asset`] is a "runtime value" that is loaded from an [`AssetSource`],
|
||||||
/// which can be something like a filesystem, a network, etc.
|
/// which can be something like a filesystem, a network, etc.
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user