-
Notifications
You must be signed in to change notification settings - Fork 124
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (43 loc) · 1.23 KB
/
Cargo.toml
File metadata and controls
49 lines (43 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "plotly_static"
version = "0.0.4"
description = "Export Plotly graphs to static images using WebDriver"
authors = ["Andrei Gherghescu andrei-ng@protonmail.com"]
license = "MIT"
workspace = ".."
homepage = "https://github.com/plotly/plotly.rs"
repository = "https://github.com/plotly/plotly.rs"
edition = "2021"
keywords = ["plotly", "static", "image", "export", "webdriver"]
exclude = ["target/*"]
[features]
webdriver_download = []
geckodriver = []
chromedriver = []
# This is used for enabling extra debugging messages and debugging functionality
debug = []
[dependencies]
log = "0.4"
serde = { version = "1.0", features = ["derive"] }
rand = "0.9"
serde_json = "1.0"
base64 = "0.22"
fantoccini = "0.22"
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
urlencoding = "2"
reqwest = { version = "0.12", features = ["blocking"] }
[dev-dependencies]
plotly_static = { path = "." }
ndarray = { version = "0.16" }
env_logger = "0.11"
clap = { version = "4.0", features = ["derive"] }
[build-dependencies]
tokio = { version = "1", features = ["full"] }
anyhow = "1.0"
dirs = "6.0"
zip = "4.0"
webdriver-downloader = "0.16"
# Needed for docs.rs to build the documentation
[package.metadata.docs.rs]
features = ["chromedriver"]