Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion plotly/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions plotly_static/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 [email protected]"]
license = "MIT"
Expand Down Expand Up @@ -46,4 +46,4 @@ webdriver-downloader = "0.16"

# Needed for docs.rs to build the documentation
[package.metadata.docs.rs]
features = ["chromedriver"]
features = ["chromedriver"]
4 changes: 2 additions & 2 deletions plotly_static/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

Expand Down Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion plotly_static/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading