Skip to content

Commit

Permalink
Update glam requirement from 0.25.0 to 0.26.0
Browse files Browse the repository at this point in the history
Updates the requirements on [glam](https://github.com/bitshifter/glam-rs) to permit the latest version.
- [Changelog](https://github.com/bitshifter/glam-rs/blob/main/CHANGELOG.md)
- [Commits](bitshifter/glam-rs@0.25.0...0.26.0)

---
updated-dependencies:
- dependency-name: glam
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored Mar 19, 2024
1 parent 72d6cea commit 2bb2d76
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion examples/common/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.25.0"
glam = "0.26.0"
inox2d = { path = "../../inox2d" }
tracing = "0.1.40"
winit = "0.29"
Expand Down
2 changes: 1 addition & 1 deletion examples/render-opengl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inox2d = { path = "../../inox2d" }
inox2d-opengl = { path = "../../inox2d-opengl" }

clap = { version = "4.1.8", features = ["derive"] }
glam = { version = "0.25.0", features = ["bytemuck"] }
glam = { version = "0.26.0", features = ["bytemuck"] }
glow = { version = "0.13.1" }
glutin = "0.31.2"
glutin-winit = "0.4.2"
Expand Down
2 changes: 1 addition & 1 deletion examples/render-webgl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inox2d-opengl = { path = "../../inox2d-opengl" }
common = { path = "../common" }

console_error_panic_hook = "0.1.7"
glam = "0.25.0"
glam = "0.26.0"
glow = "0.13.1"
js-sys = "0.3.64"
reqwest = "0.11.18"
Expand Down
2 changes: 1 addition & 1 deletion examples/render-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ inox2d = { path = "../../inox2d" }
inox2d-wgpu = { path = "../../inox2d-wgpu" }

clap = { version = "4.1.8", features = ["derive"] }
glam = { version = "0.25.0", features = ["bytemuck"] }
glam = { version = "0.26.0", features = ["bytemuck"] }
pollster = "0.3.0"
raw-window-handle = "0.5.2"
tracing = "0.1.37"
Expand Down
2 changes: 1 addition & 1 deletion inox2d-opengl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ categories = ["graphics", "rendering"]

[dependencies]
inox2d = { path = "../inox2d", version = "0.3.0" }
glam = "0.25.0"
glam = "0.26.0"
glow = { version = "0.13.1" }
thiserror = "1.0.39"
tracing = "0.1.37"
2 changes: 1 addition & 1 deletion inox2d-wgpu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ categories = ["graphics", "rendering"]
inox2d = { path = "../inox2d", version = "0.3.0" }
bytemuck = "1.13.1"
encase = { version = "0.7.0", features = ["glam"] }
glam = { version = "0.25.0", features = ["bytemuck"] }
glam = { version = "0.26.0", features = ["bytemuck"] }
thiserror = "1.0.39"
tracing = "0.1.37"
wgpu = { version = "0.19.1", features = ["webgl"] }
2 changes: 1 addition & 1 deletion inox2d/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = ["gamedev", "graphics", "inochi2d", "vtuber"]
categories = ["graphics", "rendering"]

[dependencies]
glam = "0.25.0"
glam = "0.26.0"
image = { version = "0.24.7", default-features = false, features = [
"png",
"jpeg",
Expand Down

0 comments on commit 2bb2d76

Please sign in to comment.