Skip to content

Commit

Permalink
Update glam requirement from 0.24 to 0.25
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](https://github.com/bitshifter/glam-rs/commits)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 31, 2023
1 parent d7869b8 commit eb3fc04
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion examples/animation/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ path = "src/main.rs"
# logging
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
# Linear algebra library
glam = "0.24"
glam = "0.25"
# block on async functions
pollster = "0.3"
# Renderer core
Expand Down
2 changes: 1 addition & 1 deletion examples/cube-no-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/main.rs"
# logging
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
# Linear algebra library
glam = "0.24"
glam = "0.25"
# Renderer core
rend3 = { version = "^0.3.0", path = "../../rend3" }
# Programmable render list that dictates how the scene renders
Expand Down
2 changes: 1 addition & 1 deletion examples/cube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ path = "src/main.rs"
# logging
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
# Linear algebra library
glam = "0.24"
glam = "0.25"
# Renderer core
rend3 = { version = "^0.3.0", path = "../../rend3" }
# Programmable render list that dictates how the scene renders
Expand Down
2 changes: 1 addition & 1 deletion examples/egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ egui-winit = { git = "https://github.com/emilk/egui.git", branch="master", defau
# logging
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
# Linear algebra library
glam = "0.24"
glam = "0.25"
# Importing png's
image = { version = "0.24.3", default-features = false, features = ["png"] }
# Renderer core
Expand Down
2 changes: 1 addition & 1 deletion examples/scene-viewer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ tracy = ["profiling/profile-with-tracy", "tracy-client"]
[dependencies]
anyhow = "1"
cfg-if = "1"
glam = "0.24"
glam = "0.25"
# 0.7 is a completely unrelated library
histogram = "0.6"
image = { version = "0.24", default-features = false, features = [
Expand Down
2 changes: 1 addition & 1 deletion examples/skinning/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ path = "src/main.rs"
# logging
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
# Linear algebra library
glam = "0.24"
glam = "0.25"
# block on async functions
pollster = "0.3"
# Renderer core
Expand Down
2 changes: 1 addition & 1 deletion examples/static-gltf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/main.rs"
# logging
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
# Linear algebra library
glam = "0.24"
glam = "0.25"
# parsing model files
gltf = { version = "1.0", default-features = false, features = ["import", "utils"] }
# Renderer core
Expand Down
2 changes: 1 addition & 1 deletion examples/textured-quad/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ path = "src/main.rs"
# logging
env_logger = { version = "0.10", default-features = false, features = ["auto-color", "humantime"] }
# Linear algebra library
glam = "0.24"
glam = "0.25"
# Renderer core
rend3 = { version = "^0.3.0", path = "../../rend3" }
# Framework that deals with the event loop, setting up the renderer, and platform differences.
Expand Down
2 changes: 1 addition & 1 deletion rend3-egui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.71"
[dependencies]
egui = {git = "https://github.com/emilk/egui.git", branch="master"}
egui-wgpu = {git = "https://github.com/emilk/egui.git", branch="master"}
glam = "0.24"
glam = "0.25"
rend3 = { version = "^0.3.0", path = "../rend3" }
wgpu = "0.18.0"
wgpu-types = "0.18.0"
2 changes: 1 addition & 1 deletion rend3-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ rust-version = "1.71"
[dependencies]
anyhow = "1"
cfg-if = "1"
glam = "0.24"
glam = "0.25"
log = "0.4"
parking_lot = "0.12"
profiling = { version = "1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion rend3-gltf/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ base64 = "0.21"
bytemuck = "1"
ddsfile = { version = "0.5", optional = true }
float-ord = "0.3.2"
glam = "0.24"
glam = "0.25"
gltf = { version = "1.0", default-features = false, features = ["KHR_lights_punctual", "KHR_texture_transform", "KHR_materials_unlit", "extras", "names", "utils"] }
image = { version = "0.24", default-features = false }
ktx2 = { version = "0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion rend3-routine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bytemuck = "1"
codespan-reporting = "0.11"
encase = { version = "0.6", features = ["glam"] }
flume = "0.11"
glam = { version = "0.24.0", features = ["bytemuck"] }
glam = { version = "0.25.0", features = ["bytemuck"] }
log = "0.4"
naga = { version = "0.14", features = ["wgsl-in"] }
ordered-float = "4"
Expand Down
2 changes: 1 addition & 1 deletion rend3-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ name = "rend3-tests"
anyhow = "1"
env_logger = "0.10"
flume = { version = "0.11", features = ["spin"] }
glam = "0.24"
glam = "0.25"
image = { version = "0.24", default-features = false, features = ["png"] }
rend3 = { path = "../rend3" }
rend3-routine = { path = "../rend3-routine" }
Expand Down
2 changes: 1 addition & 1 deletion rend3-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ bitflags = "2"
bytemuck = { version = "1", features = ["min_const_generics"] }
cfg-if = "1"
encase = { version = "0.6", features = ["glam"] }
glam = { version = "0.24", features = ["bytemuck"] }
glam = { version = "0.25", features = ["bytemuck"] }
list-any = "0.2"
once_cell = "1"
thiserror = "1"
Expand Down
2 changes: 1 addition & 1 deletion rend3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ bumpalo = "3"
bytemuck = "1"
encase = { version = "0.6" }
flume = "0.11"
glam = { version = "0.24.0", features = ["bytemuck"] }
glam = { version = "0.25.0", features = ["bytemuck"] }
handlebars = "4"
indexmap = "2"
list-any = "0.2"
Expand Down

0 comments on commit eb3fc04

Please sign in to comment.