From 9c755ea94f3b074fb2a50a6fa6ba125ef5638d06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Jan 2026 22:46:00 +0000 Subject: [PATCH] Update glam requirement from 0.30.8 to 0.31.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.31.0) --- updated-dependencies: - dependency-name: glam dependency-version: 0.31.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..281531f 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.31.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..4d56dbe 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.31" tracing-subscriber = "0.3" tracing-tracy = "0.11" tracing = "0.1"