Skip to content

Commit 3a1c9f5

Browse files
Jengamonjakobhellermann
authored andcommitted
Make bevy_render a dev-dependency
- also patch bevy crates to main for `SystemWithAccess::system` fix
1 parent 7ad5f70 commit 3a1c9f5

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

Cargo.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,22 @@ lexopt = { version = "0.3.0", optional = true }
2626

2727
[dev-dependencies]
2828
bevy = { version = "0.19.0-dev" }
29+
bevy_render = { version = "0.19.0-dev" }
2930

3031
[patch.crates-io]
3132
# bevy_ecs = { path = "../bevy/crates/bevy_ecs" }
3233
# bevy_app = { path = "../bevy/crates/bevy_app" }
3334
# bevy_color = { path = "../bevy/crates/bevy_color" }
3435
# bevy_log = { path = "../bevy/crates/bevy_log" }
3536
# bevy_platform = { path = "../bevy/crates/bevy_platform" }
37+
# bevy_render = { path = "../bevy/crates/bevy_render" }
3638
# bevy_utils = { path = "../bevy/crates/bevy_utils" }
3739
# bevy = { path = "../bevy" }
40+
bevy_ecs = { git = "https://github.com/bevyengine/bevy" }
41+
bevy_app = { git = "https://github.com/bevyengine/bevy" }
42+
bevy_color = { git = "https://github.com/bevyengine/bevy" }
43+
bevy_log = { git = "https://github.com/bevyengine/bevy" }
44+
bevy_platform = { git = "https://github.com/bevyengine/bevy" }
45+
bevy_render = { git = "https://github.com/bevyengine/bevy" }
46+
bevy_utils = { git = "https://github.com/bevyengine/bevy" }
3847
bevy = { git = "https://github.com/bevyengine/bevy" }

0 commit comments

Comments
 (0)