From 9be6473eb7f805216a749a3484a62015c7c44113 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 07:44:50 +0000 Subject: [PATCH] Bump the rust group across 1 directory with 3 updates Updates the requirements on [pyo3](https://github.com/pyo3/pyo3), [numpy](https://github.com/PyO3/rust-numpy) and [num-derive](https://github.com/rust-num/num-derive) to permit the latest version. Updates `pyo3` to 0.28.3 - [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.28.0...v0.28.3) Updates `numpy` to 0.29.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.28.0...v0.29.0) Updates `num-derive` to 0.5.1 - [Changelog](https://github.com/rust-num/num-derive/blob/main/RELEASES.md) - [Commits](https://github.com/rust-num/num-derive/compare/num-derive-0.4.0...num-derive-0.5.1) --- updated-dependencies: - dependency-name: pyo3 dependency-version: 0.28.3 dependency-type: direct:production dependency-group: rust - dependency-name: numpy dependency-version: 0.29.0 dependency-type: direct:production dependency-group: rust - dependency-name: num-derive dependency-version: 0.5.1 dependency-type: direct:production dependency-group: rust ... Signed-off-by: dependabot[bot] --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 578a38e..2ce5a18 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,10 +10,10 @@ name = "streamtracer" crate-type = ["cdylib"] [dependencies] -pyo3 = {version = "0.28", features = ["extension-module"]} -numpy = "0.28" # I think this should follow the pyo3 version, but it can be slow to release +pyo3 = {version = "0.29", features = ["extension-module"]} +numpy = "0.29" # I think this should follow the pyo3 version, but it can be slow to release num-traits = "0.2" -num-derive = "0.4" +num-derive = "0.5" rayon = "1.11" ndarray = {version = "0.17", features = ["rayon"]}