From 8dea5fc06b2c98370bfdcdc6c867667fa270e311 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 13:54:47 +0000 Subject: [PATCH] Update glam requirement from 0.30.8 to 0.32.0 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.30.8...0.32.0) --- updated-dependencies: - dependency-name: glam dependency-version: 0.32.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- examples/traced/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ace2d46..639225f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ recast = [] spade = { version = "2.15.0" } tracing = { version = "0.1", optional = true } hashbrown = { version = "0.16" } -glam = { version = "0.30.8", features = ["approx"] } +glam = { version = "0.32.0", features = ["approx"] } smallvec = { version = "1.15", features = ["union", "const_generics"] } bvh2d = { version = "0.7" } serde = { version = "1.0", features = ["derive"], optional = true } diff --git a/examples/traced/Cargo.toml b/examples/traced/Cargo.toml index 96e27ae..05a4c2b 100644 --- a/examples/traced/Cargo.toml +++ b/examples/traced/Cargo.toml @@ -8,7 +8,7 @@ publish = false [dependencies] polyanya = { path = "../../", features = ["tracing"] } -glam = "0.30" +glam = "0.32" tracing-subscriber = "0.3" tracing-tracy = "0.11" tracing = "0.1"