From 7fe1cbe117a9e31fcf96e4c86f1e255061590772 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Oct 2025 03:12:07 +0000 Subject: [PATCH] Update ndarray requirement from 0.16 to 0.17 Updates the requirements on [ndarray](https://github.com/rust-ndarray/ndarray) to permit the latest version. - [Release notes](https://github.com/rust-ndarray/ndarray/releases) - [Changelog](https://github.com/rust-ndarray/ndarray/blob/master/RELEASES.md) - [Commits](https://github.com/rust-ndarray/ndarray/compare/0.16.0...0.17.0) --- updated-dependencies: - dependency-name: ndarray dependency-version: 0.17.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- plotly/Cargo.toml | 4 ++-- plotly_static/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plotly/Cargo.toml b/plotly/Cargo.toml index 24340dcc..9d9e65bb 100644 --- a/plotly/Cargo.toml +++ b/plotly/Cargo.toml @@ -63,7 +63,7 @@ image = { version = "0.25", optional = true } plotly_derive = { version = "0.13", path = "../plotly_derive" } plotly_static = { version = "0.1", path = "../plotly_static", optional = true } plotly_kaleido = { version = "0.13", path = "../plotly_kaleido", optional = true } -ndarray = { version = "0.16", optional = true } +ndarray = { version = "0.17", optional = true } once_cell = "1" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" @@ -90,7 +90,7 @@ csv = "1.1" image = "0.25" itertools = ">=0.10, <0.15" itertools-num = "0.1" -ndarray = "0.16" +ndarray = "0.17" plotly_static = { path = "../plotly_static" } rand_distr = "0.5" base64 = "0.22" diff --git a/plotly_static/Cargo.toml b/plotly_static/Cargo.toml index cd2835fb..adabb08e 100644 --- a/plotly_static/Cargo.toml +++ b/plotly_static/Cargo.toml @@ -33,7 +33,7 @@ reqwest = { version = "0.12", features = ["blocking"] } [dev-dependencies] plotly_static = { path = "." } -ndarray = { version = "0.16" } +ndarray = { version = "0.17" } env_logger = "0.11" clap = { version = "4.0", features = ["derive"] }