From 656463238d9443f1fa2553e67de149938b77b744 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Oct 2025 03:10:53 +0000 Subject: [PATCH 1/2] Update zip requirement from 5.0 to 6.0 Updates the requirements on [zip](https://github.com/zip-rs/zip2) to permit the latest version. - [Release notes](https://github.com/zip-rs/zip2/releases) - [Changelog](https://github.com/zip-rs/zip2/blob/master/CHANGELOG.md) - [Commits](https://github.com/zip-rs/zip2/compare/v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: zip dependency-version: 6.0.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- plotly_kaleido/Cargo.toml | 2 +- plotly_static/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plotly_kaleido/Cargo.toml b/plotly_kaleido/Cargo.toml index 2f28e3e3..df5f00ed 100644 --- a/plotly_kaleido/Cargo.toml +++ b/plotly_kaleido/Cargo.toml @@ -30,5 +30,5 @@ base64 = "0.22" plotly_kaleido = { path = ".", features = ["download"] } [build-dependencies] -zip = "5.0" +zip = "6.0" directories = ">=4, <7" diff --git a/plotly_static/Cargo.toml b/plotly_static/Cargo.toml index cd2835fb..04f63de2 100644 --- a/plotly_static/Cargo.toml +++ b/plotly_static/Cargo.toml @@ -41,7 +41,7 @@ clap = { version = "4.0", features = ["derive"] } tokio = { version = "1", features = ["full"] } anyhow = "1.0" dirs = "6.0" -zip = "5.0" +zip = "6.0" webdriver-downloader = "0.16" # Needed for docs.rs to build the documentation From 579ec14b341aae45d654c1eb8b0d868658c5443b Mon Sep 17 00:00:00 2001 From: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> Date: Tue, 28 Oct 2025 19:01:32 +0100 Subject: [PATCH 2/2] fix typo Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> --- plotly_static/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly_static/README.md b/plotly_static/README.md index 7f70c286..c2c20feb 100644 --- a/plotly_static/README.md +++ b/plotly_static/README.md @@ -161,7 +161,7 @@ let mut exporter = StaticExporterBuilder::default() ## Examples -Check the self contatined examples in the examples folder. +Check the self contained examples in the examples folder. Similar examples are available in the [Plotly.rs package](https://github.com/plotly/plotly.rs), in [Plotly.rs Book](https://plotly.github.io/plotly.rs/) as well as the example in [Plotly.rs examples/static_export](https://github.com/plotly/plotly.rs/tree/main/examples/static_export).