From 71e29f3fd3cc6ed62ba0e475f45eadd506fe8d17 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 May 2026 04:32:13 +0000 Subject: [PATCH] Update nalgebra requirement from 0.34 to 0.35 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/compare/v0.34.1...v0.35.0) --- updated-dependencies: - dependency-name: nalgebra dependency-version: 0.35.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- dlt-examples/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6bc5ca3..5f46f16 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ categories = [ rust-version = "1.65" [dependencies] -nalgebra = { version = "0.34", default-features = false, features = ["libm"] } +nalgebra = { version = "0.35", default-features = false, features = ["libm"] } serde = { version = "1.0", features = ["derive"], optional = true } [dev-dependencies] diff --git a/dlt-examples/Cargo.toml b/dlt-examples/Cargo.toml index fbc5acf..cacfb0d 100644 --- a/dlt-examples/Cargo.toml +++ b/dlt-examples/Cargo.toml @@ -11,5 +11,5 @@ rust-version = "1.65" [dependencies] dlt = { path = ".." } cam-geom = "0.16" -nalgebra = "0.34" +nalgebra = "0.35" approx = "0.5"