plotly 0.14.0

A plotting library powered by Plotly.js
Documentation
[package]
name = "plotly"
version = "0.14.0"
description = "A plotting library powered by Plotly.js"
authors = [
    "Ioannis Giagkiozis <i.giagkiozis@gmail.com>",
    "Andrei Gherghescu <andrei-ng@protonmail.com>",
]
license = "MIT"
readme = "../README.md"
homepage = "https://github.com/plotly/plotly.rs"
documentation = "https://docs.rs/plotly"
repository = "https://github.com/plotly/plotly.rs"
edition = "2021"
keywords = ["plot", "chart", "plotly"]

exclude = ["target/*"]

[features]
static_export_chromedriver = [
    "plotly_static",
    "plotly_static/chromedriver",
    "async-trait",
]
static_export_geckodriver = [
    "plotly_static",
    "plotly_static/geckodriver",
    "async-trait",
]
static_export_wd_download = ["plotly_static/webdriver_download"]
static_export_default = [
    "plotly_static",
    "plotly_static/chromedriver",
    "plotly_static/webdriver_download",
    "async-trait",
]

plotly_ndarray = ["ndarray"]
plotly_image = ["image"]
plotly_embed_js = []

# All non-conflicting features
all = [
    "plotly_ndarray",
    "plotly_image",
    "plotly_embed_js",
    "static_export_default",
]
# This is used for enabling extra debugging messages and debugging functionality
debug = ["plotly_static?/debug"]

# DEPRECATED: kaleido feature will be removed in version 0.14.0. Use `static_export_*` features instead.
kaleido = ["plotly_kaleido"]
# DEPRECATED: kaleido_download feature will be removed in version 0.14.0. Use `static_export_wd_download` instead.
kaleido_download = ["plotly_kaleido/download"]


[dependencies]
askama = { version = "0.15.0", features = ["serde_json"] }
dyn-clone = "1"
erased-serde = "0.4"
image = { version = "0.25", optional = true }
plotly_derive = { version = "0.14", path = "../plotly_derive" }
plotly_static = { version = "0.1", path = "../plotly_static", optional = true }
plotly_kaleido = { version = "0.13", path = "../plotly_kaleido", optional = true }
ndarray = { version = "0.17", optional = true }
once_cell = "1"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_repr = "0.1"
serde_with = ">=2, <4"
rand = { version = "0.9", default-features = false, features = [
    "small_rng",
    "alloc",
] }
async-trait = { version = "0.1", optional = true }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = { version = "0.4" }
wasm-bindgen = { version = "0.2" }
serde-wasm-bindgen = { version = "0.6.3" }
web-sys = { version = "0.3.77", features = [
    "Document",
    "Window",
    "HtmlElement",
] }

[dev-dependencies]
csv = "1.1"
image = "0.25"
itertools = ">=0.10, <0.15"
itertools-num = "0.1"
ndarray = "0.17"
plotly_static = { path = "../plotly_static" }
rand_distr = "0.5"
base64 = "0.22"