From c8f6fb815d08995e1c252af0cd60edbf2783edc8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 11 Jul 2025 03:30:54 +0000 Subject: [PATCH 1/2] Update darling requirement from 0.20 to 0.21 Updates the requirements on [darling](https://github.com/TedDriggs/darling) to permit the latest version. - [Release notes](https://github.com/TedDriggs/darling/releases) - [Changelog](https://github.com/TedDriggs/darling/blob/master/CHANGELOG.md) - [Commits](https://github.com/TedDriggs/darling/compare/v0.20.0...v0.21.0) --- updated-dependencies: - dependency-name: darling dependency-version: 0.21.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- plotly_derive/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plotly_derive/Cargo.toml b/plotly_derive/Cargo.toml index 306fac7f..bc6d7659 100644 --- a/plotly_derive/Cargo.toml +++ b/plotly_derive/Cargo.toml @@ -14,7 +14,7 @@ keywords = ["plot", "chart", "plotly"] quote = "1" syn = "2" proc-macro2 = "1" -darling = "0.20" +darling = "0.21" [lib] proc-macro = true From 67dc3f7ac10afda4dc89dfec8af24fa9e06cc9f8 Mon Sep 17 00:00:00 2001 From: Andrei NG <8067229+andrei-ng@users.noreply.github.com> Date: Fri, 11 Jul 2025 07:42:15 +0200 Subject: [PATCH 2/2] fix typo --- .../customization/consistent_static_format_export/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/customization/consistent_static_format_export/README.md b/examples/customization/consistent_static_format_export/README.md index 0bdbf82b..b40a40ba 100644 --- a/examples/customization/consistent_static_format_export/README.md +++ b/examples/customization/consistent_static_format_export/README.md @@ -6,7 +6,7 @@ This example is based on [GitHub Issue #171](https://github.com/plotly/plotly.rs For consistent font rendering across browsers and export formats, always set the `font.family` property explicitly in your plot configuration. Relying on default or generic font settings can lead to differences in appearance, especially for font size and legend layout, depending on the browser or export backend. -The issue reported in [#171](https://github.com/plotly/plotly.rs/issues/171)is solved when the `font.family` property is set explicitly (e.g., to `"Times New Roman, serif"`) for all text elements (titles, axes, legends) which ensures consistent results in all output formats accross different browsers. +The issue reported in [#171](https://github.com/plotly/plotly.rs/issues/171)is solved when the `font.family` property is set explicitly (e.g., to `"Times New Roman, serif"`) for all text elements (titles, axes, legends) which ensures consistent results in all output formats across different browsers. ## Running the Example