Skip to content

Commit

Permalink
Bump deps
Browse files Browse the repository at this point in the history
closes #35
closes #36
closes #37
closes #38
  • Loading branch information
martinstarman committed Apr 22, 2024
1 parent d21528f commit be691aa
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 14 deletions.
23 changes: 15 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ version = "0.7.0"

[dependencies]
bevy_ecs = "0.13.2"
i_float = "0.8.0"
i_overlay = "0.23.0"
i_shape = "0.14.0"
i_triangle = "0.18.0"
i_float = "0.10.0"
i_overlay = "0.25.0"
i_shape = "0.16.0"
i_triangle = "0.20.0"
macroquad = {version = "0.4.5", features = ["audio"]}
maths-rs = "0.2.6"
navmesh = "0.12.1"
Expand Down
2 changes: 1 addition & 1 deletion src/system/draw_navmesh.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use bevy_ecs::{
system::{Query, Res},
};
use i_float::{f32_vec::F32Vec, fix_vec::FixVec};
use i_overlay::bool::fill_rule::FillRule;
use i_overlay::core::fill_rule::FillRule;
use i_shape::fix_path::FixPath;
use i_shape::fix_shape::FixShape;
use i_triangle::triangulation::triangulate::Triangulate;
Expand Down
2 changes: 1 addition & 1 deletion src/system/select_or_move_players.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use crate::{
};
use bevy_ecs::{component::ComponentId, event::EventReader, query::With, system::Query};
use i_float::{f32_vec::F32Vec, fix_vec::FixVec};
use i_overlay::bool::fill_rule::FillRule;
use i_overlay::core::fill_rule::FillRule;
use i_shape::fix_path::FixPath;
use i_shape::fix_shape::FixShape;
use i_triangle::triangulation::triangulate::Triangulate;
Expand Down

0 comments on commit be691aa

Please sign in to comment.