From bdd601641e7a3ca1a24178b07fc4f8c676be102e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Jul 2025 16:26:50 +0000 Subject: [PATCH 1/2] chore(deps): update nalgebra requirement from 0.33.0 to 0.34.0 Updates the requirements on [nalgebra](https://github.com/dimforge/nalgebra) to permit the latest version. - [Changelog](https://github.com/dimforge/nalgebra/blob/main/CHANGELOG.md) - [Commits](https://github.com/dimforge/nalgebra/commits) --- updated-dependencies: - dependency-name: nalgebra dependency-version: 0.34.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 71d16d2eafb..f48dabb6902 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ authors = ["Anshul Malik "] num-bigint = { version = "0.4", optional = true } num-traits = { version = "0.2", optional = true } rand = "0.9" -nalgebra = "0.33.0" +nalgebra = "0.34.0" [dev-dependencies] quickcheck = "1.0" From 31c4d703ad428c6f8d9fac6aad3eec33228f42d0 Mon Sep 17 00:00:00 2001 From: vil02 <65706193+vil02@users.noreply.github.com> Date: Thu, 31 Jul 2025 22:24:16 +0200 Subject: [PATCH 2/2] fix: allow duplicated versions of `glam` --- clippy.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/clippy.toml b/clippy.toml index 1b3dd21fbf7..42484457fb0 100644 --- a/clippy.toml +++ b/clippy.toml @@ -1,4 +1,3 @@ allowed-duplicate-crates = [ - "zerocopy", - "zerocopy-derive", + "glam", ]