From a1d87489fa011630794b7d0c3c140279f4cf08fb Mon Sep 17 00:00:00 2001 From: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> Date: Sat, 12 Jul 2025 11:21:56 +0200 Subject: [PATCH] fix plotly_static readme link Signed-off-by: Andrei Gherghescu <8067229+andrei-ng@users.noreply.github.com> --- plotly/Cargo.toml | 2 +- plotly_static/Cargo.toml | 4 ++-- plotly_static/README.md | 4 ++-- plotly_static/src/lib.rs | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/plotly/Cargo.toml b/plotly/Cargo.toml index 12ce6aea..8fe5773a 100644 --- a/plotly/Cargo.toml +++ b/plotly/Cargo.toml @@ -51,7 +51,7 @@ dyn-clone = "1" erased-serde = "0.4" image = { version = "0.25", optional = true } plotly_derive = { version = "0.13", path = "../plotly_derive" } -plotly_static = { version = "0.0.2", path = "../plotly_static", optional = true } +plotly_static = { version = "0.0.3", path = "../plotly_static", optional = true } plotly_kaleido = { version = "0.13", path = "../plotly_kaleido", optional = true } ndarray = { version = "0.16", optional = true } once_cell = "1" diff --git a/plotly_static/Cargo.toml b/plotly_static/Cargo.toml index a2f64c4f..efbd71a1 100644 --- a/plotly_static/Cargo.toml +++ b/plotly_static/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "plotly_static" -version = "0.0.2" +version = "0.0.3" description = "Export Plotly graphs to static images using WebDriver" authors = ["Andrei Gherghescu andrei-ng@protonmail.com"] license = "MIT" @@ -46,4 +46,4 @@ webdriver-downloader = "0.16" # Needed for docs.rs to build the documentation [package.metadata.docs.rs] -features = ["chromedriver"] \ No newline at end of file +features = ["chromedriver"] diff --git a/plotly_static/README.md b/plotly_static/README.md index 30240329..a0e653e9 100644 --- a/plotly_static/README.md +++ b/plotly_static/README.md @@ -56,7 +56,7 @@ Add to your `Cargo.toml`: ```toml [dependencies] -plotly_static = { version = "0.0.2", features = ["chromedriver", "webdriver_download"] } +plotly_static = { version = "0.0.3", features = ["chromedriver", "webdriver_download"] } serde_json = "1.0" ``` @@ -151,7 +151,7 @@ Similar examples are available in the [Plotly.rs package](https://github.com/plo ## Documentation - [API Documentation](https://docs.rs/plotly_static/) -- [Static Image Export Guide](../../docs/book/src/fundamentals/static_image_export.md) +- [Static Image Export Guide](https://github.com/plotly/plotly.rs/tree/main/docs/book/src/fundamentals/static_image_export.md) ## License diff --git a/plotly_static/src/lib.rs b/plotly_static/src/lib.rs index 38cded1f..3f6dbbf1 100644 --- a/plotly_static/src/lib.rs +++ b/plotly_static/src/lib.rs @@ -74,7 +74,7 @@ //! //! ```toml //! [dependencies] -//! plotly_static = { version = "0.0.2", features = ["chromedriver", "webdriver_download"] } +//! plotly_static = { version = "0.0.3", features = ["chromedriver", "webdriver_download"] } //! ``` //! //! ## Advanced Usage