From 7938f4537819b7b906449100e822fb938d58cef1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Mar 2026 05:56:29 +0000 Subject: [PATCH] chore(deps): bump the dependencies group across 1 directory with 5 updates Updates the requirements on [nalgebra](https://github.com/dimforge/nalgebra), [criterion](https://github.com/criterion-rs/criterion.rs), [rand](https://github.com/rust-random/rand), [pyo3](https://github.com/pyo3/pyo3) and [numpy](https://github.com/PyO3/rust-numpy) to permit the latest version. Updates `nalgebra` to 0.34.1 - [Changelog](https://github.com/dimforge/nalgebra/blob/main/CHANGELOG.md) - [Commits](https://github.com/dimforge/nalgebra/compare/v0.32.0...v0.34.1) Updates `criterion` to 0.8.2 - [Release notes](https://github.com/criterion-rs/criterion.rs/releases) - [Changelog](https://github.com/criterion-rs/criterion.rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/criterion-rs/criterion.rs/compare/0.5.0...criterion-v0.8.2) Updates `rand` to 0.10.0 - [Release notes](https://github.com/rust-random/rand/releases) - [Changelog](https://github.com/rust-random/rand/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-random/rand/compare/0.8.0...0.10.0) Updates `pyo3` to 0.23.5 - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](https://github.com/pyo3/pyo3/compare/v0.23.0...v0.23.5) Updates `numpy` to 0.28.0 - [Release notes](https://github.com/PyO3/rust-numpy/releases) - [Changelog](https://github.com/PyO3/rust-numpy/blob/main/CHANGELOG.md) - [Commits](https://github.com/PyO3/rust-numpy/compare/v0.23.0...v0.28.0) --- updated-dependencies: - dependency-name: nalgebra dependency-version: 0.34.1 dependency-type: direct:production dependency-group: dependencies - dependency-name: criterion dependency-version: 0.8.2 dependency-type: direct:production dependency-group: dependencies - dependency-name: rand dependency-version: 0.10.0 dependency-type: direct:production dependency-group: dependencies - dependency-name: pyo3 dependency-version: 0.23.5 dependency-type: direct:production dependency-group: dependencies - dependency-name: numpy dependency-version: 0.28.0 dependency-type: direct:production dependency-group: dependencies ... Signed-off-by: dependabot[bot] --- Cargo.toml | 6 +++--- sdfrust-python/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 82a0d9a..cd43446 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ exclude = [ [dependencies] thiserror = "2.0" -nalgebra = { version = "0.32", optional = true } +nalgebra = { version = "0.34", optional = true } flate2 = { version = "1.0", optional = true } [features] @@ -39,8 +39,8 @@ gzip = ["flate2"] [dev-dependencies] tempfile = "3.14" -criterion = { version = "0.5", features = ["html_reports"] } -rand = "0.8" +criterion = { version = "0.8", features = ["html_reports"] } +rand = "0.10" [[bench]] name = "sdf_parse_benchmark" diff --git a/sdfrust-python/Cargo.toml b/sdfrust-python/Cargo.toml index ac59f81..60c604e 100644 --- a/sdfrust-python/Cargo.toml +++ b/sdfrust-python/Cargo.toml @@ -14,9 +14,9 @@ name = "_sdfrust" crate-type = ["cdylib"] [dependencies] -pyo3 = { version = "0.23", features = ["extension-module"] } +pyo3 = { version = "0.28", features = ["extension-module"] } sdfrust = { path = ".." } -numpy = { version = "0.23", optional = true } +numpy = { version = "0.28", optional = true } [features] default = ["numpy"]