Skip to content

Commit

Permalink
Merge pull request #70 from bytestring-net/dev
Browse files Browse the repository at this point in the history
Change default_features to default-features
  • Loading branch information
IDEDARY authored Sep 7, 2024
2 parents d7d1992 + dd47369 commit 11be6a6
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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"] }
bevy_mod_picking = { version = "^0.20.0", default-features = false, features = ["selection", "backend_raycast"] }
2 changes: 1 addition & 1 deletion examples/mesh2d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/minimal/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/worldspace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion examples/worldspace_text/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 11be6a6

Please sign in to comment.