From 1a206af3b378a35b70156ec40abec4f36528f036 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 May 2024 05:37:42 +0000 Subject: [PATCH 1/2] Update image requirement from 0.24 to 0.25 Updates the requirements on [image](https://github.com/image-rs/image) to permit the latest version. - [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md) - [Commits](https://github.com/image-rs/image/compare/v0.24.0...v0.25.1) --- updated-dependencies: - dependency-name: image dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- plotly/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plotly/Cargo.toml b/plotly/Cargo.toml index bea70ac3..55df4e53 100644 --- a/plotly/Cargo.toml +++ b/plotly/Cargo.toml @@ -26,7 +26,7 @@ askama_axum = { version = "0.4.0", optional = true } dyn-clone = "1" erased-serde = "0.4" getrandom = { version = "0.2", features = ["js"], optional = true } -image = { version = "0.24", optional = true } +image = { version = "0.25", optional = true } js-sys = { version = "0.3", optional = true } plotly_derive = { version = "0.8.4", path = "../plotly_derive" } plotly_kaleido = { version = "0.8.4", path = "../plotly_kaleido", optional = true } @@ -42,7 +42,7 @@ wasm-bindgen-futures = { version = "0.4", optional = true } [dev-dependencies] csv = "1.1.6" -image = "0.24" +image = "0.25" itertools = ">=0.10, <0.14" itertools-num = "0.1.3" ndarray = "0.15.4" From 6aa124642148a77f7d0836b9c74d95ead4cb7ce2 Mon Sep 17 00:00:00 2001 From: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> Date: Tue, 11 Jun 2024 22:49:45 +0200 Subject: [PATCH 2/2] update image crate version in examples dir Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> --- examples/images/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/images/Cargo.toml b/examples/images/Cargo.toml index 144ac7a4..59a3bc34 100644 --- a/examples/images/Cargo.toml +++ b/examples/images/Cargo.toml @@ -5,6 +5,6 @@ authors = ["Michael Freeborn "] edition = "2021" [dependencies] -image = "0.24.4" +image = "0.25" ndarray = "0.15.6" plotly = { path = "../../plotly", features = ["plotly_image", "plotly_ndarray"] }