From dd47369eaa82d8519bda54eb919f0055b54c2847 Mon Sep 17 00:00:00 2001 From: IDEDARY Date: Fri, 6 Sep 2024 16:41:15 +0200 Subject: [PATCH] Change default_features to default-features --- Cargo.toml | 4 ++-- examples/mesh2d/Cargo.toml | 2 +- examples/minimal/Cargo.toml | 2 +- examples/worldspace/Cargo.toml | 2 +- examples/worldspace_text/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7249d0e..d09b146 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ indexmap = { version = "^2.1" } thiserror = { version = "^1.0" } - bevy = { version = "^0.14.0", default_features = false, features = [ + bevy = { version = "^0.14.0", default-features = false, features = [ "bevy_pbr", "bevy_sprite", "bevy_text", @@ -42,4 +42,4 @@ ] } bevy_kira_audio = { version = "^0.20.0" } - bevy_mod_picking = { version = "^0.20.0", default_features = false, features = ["selection", "backend_raycast"] } \ No newline at end of file + bevy_mod_picking = { version = "^0.20.0", default-features = false, features = ["selection", "backend_raycast"] } \ No newline at end of file diff --git a/examples/mesh2d/Cargo.toml b/examples/mesh2d/Cargo.toml index cff6b5d..1f28e10 100644 --- a/examples/mesh2d/Cargo.toml +++ b/examples/mesh2d/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] - bevy = { version = "^0.14.0", default_features = false, features = [ + bevy = { version = "^0.14.0", default-features = false, features = [ "bevy_asset", "bevy_gilrs", "bevy_winit", diff --git a/examples/minimal/Cargo.toml b/examples/minimal/Cargo.toml index f7f20b8..0f299af 100644 --- a/examples/minimal/Cargo.toml +++ b/examples/minimal/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] - bevy = { version = "^0.14.0", default_features = false, features = [ + bevy = { version = "^0.14.0", default-features = false, features = [ "bevy_asset", "bevy_gilrs", "bevy_winit", diff --git a/examples/worldspace/Cargo.toml b/examples/worldspace/Cargo.toml index bd1ba36..8352820 100644 --- a/examples/worldspace/Cargo.toml +++ b/examples/worldspace/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] - bevy = { version = "^0.14.0", default_features = false, features = [ + bevy = { version = "^0.14.0", default-features = false, features = [ "bevy_asset", "bevy_winit", "bevy_core_pipeline", diff --git a/examples/worldspace_text/Cargo.toml b/examples/worldspace_text/Cargo.toml index aa398c0..ee3acb4 100644 --- a/examples/worldspace_text/Cargo.toml +++ b/examples/worldspace_text/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] - bevy = { version = "^0.14.0", default_features = false, features = [ + bevy = { version = "^0.14.0", default-features = false, features = [ "bevy_asset", "bevy_winit", "bevy_core_pipeline",