From 40157e905aaf517b7588c91200a07c132cc6fcd4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 12:10:52 +0000 Subject: [PATCH] Update glam requirement from 0.25 to 0.27 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/compare/0.25.0...0.27.0) --- updated-dependencies: - dependency-name: glam dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/Cargo.toml | 2 +- rend3-egui/Cargo.toml | 2 +- rend3-framework/Cargo.toml | 2 +- rend3-gltf/Cargo.toml | 2 +- rend3-routine/Cargo.toml | 2 +- rend3-test/Cargo.toml | 2 +- rend3-types/Cargo.toml | 2 +- rend3/Cargo.toml | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 3c4fbbce..380ca7b8 100644 --- a/examples/Cargo.toml +++ b/examples/Cargo.toml @@ -26,7 +26,7 @@ egui-winit = { version = "0.26", default-features = false, features = ["links", # logging env_logger = { version = "0.11", default-features = false, features = ["auto-color", "humantime"] } # Linear algebra library -glam = "0.25" +glam = "0.27" # gltf model loading gltf = "1.4" # Channel diff --git a/rend3-egui/Cargo.toml b/rend3-egui/Cargo.toml index d4697a9f..b4fb0b30 100644 --- a/rend3-egui/Cargo.toml +++ b/rend3-egui/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.71" [dependencies] egui = "0.26" egui-wgpu = "0.26" -glam = "0.25" +glam = "0.27" rend3 = { version = "^0.3.0", path = "../rend3" } wgpu = "0.19.0" wgpu-types = "0.19.0" diff --git a/rend3-framework/Cargo.toml b/rend3-framework/Cargo.toml index 438185fb..906112a8 100644 --- a/rend3-framework/Cargo.toml +++ b/rend3-framework/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.71" [dependencies] anyhow = "1" cfg-if = "1" -glam = "0.25" +glam = "0.27" log = "0.4" parking_lot = "0.12" profiling = { version = "1", default-features = false } diff --git a/rend3-gltf/Cargo.toml b/rend3-gltf/Cargo.toml index a3ca254f..5f4e0caf 100644 --- a/rend3-gltf/Cargo.toml +++ b/rend3-gltf/Cargo.toml @@ -20,7 +20,7 @@ base64 = "0.22" bytemuck = "1" ddsfile = { version = "0.5", optional = true } float-ord = "0.3.2" -glam = "0.25" +glam = "0.27" 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 } diff --git a/rend3-routine/Cargo.toml b/rend3-routine/Cargo.toml index 9d7c4554..3a5a6156 100644 --- a/rend3-routine/Cargo.toml +++ b/rend3-routine/Cargo.toml @@ -18,7 +18,7 @@ bytemuck = "1" codespan-reporting = "0.11" encase = { version = "0.7", features = ["glam"] } flume = "0.11" -glam = { version = "0.25.0", features = ["bytemuck"] } +glam = { version = "0.27.0", features = ["bytemuck"] } log = "0.4" naga = { version = "0.19.0", features = ["wgsl-in"] } ordered-float = "4" diff --git a/rend3-test/Cargo.toml b/rend3-test/Cargo.toml index 031e0fd3..c45a933f 100644 --- a/rend3-test/Cargo.toml +++ b/rend3-test/Cargo.toml @@ -17,7 +17,7 @@ name = "rend3-tests" anyhow = "1" env_logger = "0.11" flume = { version = "0.11", features = ["spin"] } -glam = "0.25" +glam = "0.27" image = { version = "0.24", default-features = false, features = ["png"] } rend3 = { path = "../rend3" } rend3-routine = { path = "../rend3-routine" } diff --git a/rend3-types/Cargo.toml b/rend3-types/Cargo.toml index 692b2c6f..a2d9a5db 100644 --- a/rend3-types/Cargo.toml +++ b/rend3-types/Cargo.toml @@ -16,7 +16,7 @@ bitflags = "2" bytemuck = { version = "1", features = ["min_const_generics"] } cfg-if = "1" encase = { version = "0.7", features = ["glam"] } -glam = { version = "0.25", features = ["bytemuck"] } +glam = { version = "0.27", features = ["bytemuck"] } list-any = "0.2" once_cell = "1" thiserror = "1" diff --git a/rend3/Cargo.toml b/rend3/Cargo.toml index 02d58155..4d5d0e6c 100644 --- a/rend3/Cargo.toml +++ b/rend3/Cargo.toml @@ -40,7 +40,7 @@ bumpalo = "3" bytemuck = "1" encase = { version = "0.7" } flume = "0.11" -glam = { version = "0.25.0", features = ["bytemuck"] } +glam = { version = "0.27.0", features = ["bytemuck"] } handlebars = "5" indexmap = "2" list-any = "0.2"