Skip to content

Commit

Permalink
fix: update glam to 0.24.0 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
NotAPenguin0 committed May 18, 2023
1 parent 4f07db5 commit b2bde70
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ members = [

[dependencies]
anyhow = "1.0.70"
glam = "0.23.0"
glam = "0.24.0"
winit = "0.28.3"
derivative = "2.2.0"
futures = "0.3.28"
Expand Down
2 changes: 1 addition & 1 deletion crates/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
anyhow = "1.0.70"
glam = "0.23.0"
glam = "0.24.0"
winit = "0.28.3"
derivative = "2.2.0"
futures = "0.3.28"
Expand Down
2 changes: 1 addition & 1 deletion crates/camera/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
glam = "0.23.0"
glam = "0.24.0"
anyhow = "1.0.70"
math = { path = "../math" }
scheduler = { path = "../scheduler" }
Expand Down
1 change: 1 addition & 0 deletions crates/gfx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
glam = "0.24.0"
poll-promise = { version = "0.2.0", features = ["tokio"] }
phobos = { git = "https://github.com/NotAPenguin0/phobos-rs", features = ["hlsl", "rayon"] }
anyhow = "1.0.70"
Expand Down
2 changes: 1 addition & 1 deletion crates/gui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.1.0"
edition = "2021"

[dependencies]
glam = "0.23.0"
glam = "0.24.0"
anyhow = "1.0.70"
egui = "0.21.0"
log = "0.4.17"
Expand Down
2 changes: 1 addition & 1 deletion crates/math/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2021"

[dependencies]
anyhow = "1.0.70"
glam = "0.23.0"
glam = "0.24.0"
2 changes: 1 addition & 1 deletion crates/renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
phobos = { git = "https://github.com/NotAPenguin0/phobos-rs", features = ["hlsl", "rayon"] }
anyhow = "1.0.70"
glam = "0.23.0"
glam = "0.24.0"
winit = "0.28.3"
derivative = "2.2.0"
egui = "0.21.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
[dependencies]
anyhow = "1.0.70"
log = "0.4.17"
glam = "0.23.0"
glam = "0.24.0"
tokio = { version = "1.28.0", features = ["full"] }

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/world/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
anyhow = "1.0.70"
glam = "0.23.0"
glam = "0.24.0"
math = { path = "../math" }
thread = { path = "../thread" }
scheduler = { path = "../scheduler" }
Expand Down

0 comments on commit b2bde70

Please sign in to comment.