From 4465de38b070b134c43562be2785966fb2876613 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Oct 2025 01:16:02 +0000 Subject: [PATCH] Bump nalgebra from 0.33.2 to 0.34.1 Bumps [nalgebra](https://github.com/dimforge/nalgebra) from 0.33.2 to 0.34.1. - [Changelog](https://github.com/dimforge/nalgebra/blob/main/CHANGELOG.md) - [Commits](https://github.com/dimforge/nalgebra/compare/v0.33.2...v0.34.1) --- updated-dependencies: - dependency-name: nalgebra dependency-version: 0.34.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 22 ++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7563836..188c3f0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -356,7 +356,7 @@ source = "git+https://github.com/mlund/coulomb.git#2c09685c4a52ad0716015d67db3ab dependencies = [ "anyhow", "itertools 0.10.5", - "nalgebra", + "nalgebra 0.33.2", "num", "num-integer", "physical_constants", @@ -622,7 +622,7 @@ dependencies = [ "itertools-num", "lazy_static", "log", - "nalgebra", + "nalgebra 0.34.1", "nu-ansi-term", "num-traits", "physical_constants", @@ -726,7 +726,7 @@ dependencies = [ "interatomic", "itertools 0.10.5", "log", - "nalgebra", + "nalgebra 0.33.2", "ndarray", "num", "physical_constants", @@ -1100,7 +1100,7 @@ dependencies = [ "coulomb", "dyn-clone", "itertools 0.10.5", - "nalgebra", + "nalgebra 0.33.2", "num", "physical_constants", "serde", @@ -1279,6 +1279,20 @@ dependencies = [ "typenum", ] +[[package]] +name = "nalgebra" +version = "0.34.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c4d5b3eff5cd580f93da45e64715e8c20a3996342f1e466599cf7a267a0c2f5f" +dependencies = [ + "approx", + "num-complex", + "num-rational", + "num-traits", + "simba", + "typenum", +] + [[package]] name = "nalgebra-macros" version = "0.2.2" diff --git a/Cargo.toml b/Cargo.toml index d6ba034..69dc4fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ approx = "0.5" clap = { version = "4", features = ["derive"], default-features = false } itertools = {version = "0.14"} itertools-num = {version = "0.1", default-features = false} -nalgebra = {version = "0.33", default-features = false} +nalgebra = {version = "0.34", default-features = false} rayon = "1.10" faunus = { git = "https://github.com/mlund/faunus-rs.git" } interatomic = { git = "https://github.com/mlund/interatomic.git", version = "0.3", features = ["serde"] }