diff --git a/examples/Cargo.toml b/examples/Cargo.toml index 3c4fbbce..ee5f444a 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.26" # gltf model loading gltf = "1.4" # Channel diff --git a/rend3-egui/Cargo.toml b/rend3-egui/Cargo.toml index d4697a9f..a1f6e010 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.26" 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..da035deb 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.26" 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..c87eecc0 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.26" 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..13a3acc4 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.26.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..80274b94 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.26" 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..6dcad16a 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.26", features = ["bytemuck"] } list-any = "0.2" once_cell = "1" thiserror = "1" diff --git a/rend3/Cargo.toml b/rend3/Cargo.toml index 02d58155..cb78d87c 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.26.0", features = ["bytemuck"] } handlebars = "5" indexmap = "2" list-any = "0.2"