diff --git a/Cargo.toml b/Cargo.toml index 7776f0da94e6c..e33ac34bcf09c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -627,17 +627,11 @@ crossbeam-channel = "0.5.0" argh = "0.1.12" thiserror = "2.0" event-listener = "5.3.0" -hyper = { version = "1", features = ["server", "http1"] } -http-body-util = "0.1" anyhow = "1" -macro_rules_attribute = "0.2" accesskit = "0.21" nonmax = "0.5" [target.'cfg(not(target_family = "wasm"))'.dev-dependencies] -smol = "2" -smol-macros = "0.1" -smol-hyper = "0.1" ureq = { version = "3.0.8", features = ["json"] } [target.'cfg(target_arch = "wasm32")'.dev-dependencies] diff --git a/benches/Cargo.toml b/benches/Cargo.toml index 789207d8234be..1848f361cab3d 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -23,7 +23,6 @@ bevy_picking = { path = "../crates/bevy_picking", features = [ bevy_reflect = { path = "../crates/bevy_reflect", features = ["functions"] } bevy_render = { path = "../crates/bevy_render" } bevy_tasks = { path = "../crates/bevy_tasks" } -bevy_utils = { path = "../crates/bevy_utils" } bevy_platform = { path = "../crates/bevy_platform", default-features = false, features = [ "std", ] } @@ -34,11 +33,6 @@ rand = "0.8" rand_chacha = "0.3" nonmax = { version = "0.5", default-features = false } -# Make `bevy_render` compile on Linux with x11 windowing. x11 vs. Wayland does not matter here -# because the benches do not actually open any windows. -[target.'cfg(target_os = "linux")'.dev-dependencies] -bevy_winit = { path = "../crates/bevy_winit", features = ["x11"] } - [lints.clippy] doc_markdown = "warn" manual_let_else = "warn" diff --git a/crates/bevy_render/Cargo.toml b/crates/bevy_render/Cargo.toml index c611d3ddbc81a..5dd396f0414db 100644 --- a/crates/bevy_render/Cargo.toml +++ b/crates/bevy_render/Cargo.toml @@ -86,7 +86,6 @@ bevy_platform = { path = "../bevy_platform", version = "0.17.0-dev", default-fea image = { version = "0.25.2", default-features = false } # misc -codespan-reporting = "0.12.0" # `fragile-send-sync-non-atomic-wasm` feature means we can't use Wasm threads for rendering # It is enabled for now to avoid having to do a significant overhaul of the renderer just for wasm. # When the 'atomics' feature is enabled `fragile-send-sync-non-atomic` does nothing diff --git a/crates/bevy_text/Cargo.toml b/crates/bevy_text/Cargo.toml index 58bcfb1c5b7b2..b99c329ba1348 100644 --- a/crates/bevy_text/Cargo.toml +++ b/crates/bevy_text/Cargo.toml @@ -37,7 +37,6 @@ cosmic-text = { version = "0.14", features = ["shape-run-cache"] } thiserror = { version = "2", default-features = false } serde = { version = "1", features = ["derive"] } smallvec = { version = "1", default-features = false } -unicode-bidi = "0.3.13" sys-locale = "0.3.0" tracing = { version = "0.1", default-features = false, features = ["std"] } diff --git a/crates/bevy_winit/Cargo.toml b/crates/bevy_winit/Cargo.toml index 7b4a98b79aafa..c3fb6df482383 100644 --- a/crates/bevy_winit/Cargo.toml +++ b/crates/bevy_winit/Cargo.toml @@ -75,7 +75,6 @@ bevy_android = { path = "../bevy_android", version = "0.17.0-dev", default-featu [target.'cfg(target_arch = "wasm32")'.dependencies] wasm-bindgen = { version = "0.2" } web-sys = "0.3" -crossbeam-channel = "0.5" # TODO: Assuming all wasm builds are for the browser. Require `no_std` support to break assumption. bevy_app = { path = "../bevy_app", version = "0.17.0-dev", default-features = false, features = [ "web", diff --git a/tools/example-showcase/Cargo.toml b/tools/example-showcase/Cargo.toml index 2a54af4a68815..c17477de73522 100644 --- a/tools/example-showcase/Cargo.toml +++ b/tools/example-showcase/Cargo.toml @@ -8,7 +8,6 @@ license = "MIT OR Apache-2.0" [dependencies] xshell = "0.2" clap = { version = "4.0", features = ["derive"] } -ron = "0.10" toml_edit = { version = "0.22.7", default-features = false, features = [ "parse", ] }