Skip to content

Commit a2cbe7a

Browse files
update to bevy 0.18
1 parent 0d89f5d commit a2cbe7a

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ cli = ["dep:lexopt"]
1616
render_graph = ["dep:bevy_render"]
1717

1818
[dependencies]
19-
bevy_app = { version = "0.17.0" }
20-
bevy_color = { version = "0.17.0" }
21-
bevy_ecs = { version = "0.17.0" }
22-
bevy_log = { version = "0.17.0" }
23-
bevy_platform = { version = "0.17.0" }
24-
bevy_render = { version = "0.17.0", optional = true }
25-
bevy_utils = { version = "0.17.0" }
19+
bevy_app = { version = "0.18.0" }
20+
bevy_color = { version = "0.18.0" }
21+
bevy_ecs = { version = "0.18.0" }
22+
bevy_log = { version = "0.18.0" }
23+
bevy_platform = { version = "0.18.0" }
24+
bevy_render = { version = "0.18.0", optional = true }
25+
bevy_utils = { version = "0.18.0" }
2626
disqualified = "1.0"
2727
lexopt = { version = "0.3.0", optional = true }
2828

2929
[dev-dependencies]
30-
bevy = { version = "0.17.0" }
30+
bevy = { version = "0.18.0" }
3131

3232
[[example]]
3333
name = "generate_docs"

src/schedule_graph/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ fn included_systems_sets(graph: &ScheduleGraph, settings: &Settings) -> HashSet<
548548
}
549549

550550
if settings.ambiguity_enable {
551-
for &(a, b, ref conflicts) in graph.conflicting_systems() {
551+
for &(a, b, ref conflicts) in &graph.conflicting_systems().0 {
552552
if !systems_of_interest.contains(&NodeId::System(a))
553553
|| !systems_of_interest.contains(&NodeId::System(b))
554554
{

0 commit comments

Comments
 (0)