-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathCargo.toml
More file actions
137 lines (116 loc) · 3.38 KB
/
Copy pathCargo.toml
File metadata and controls
137 lines (116 loc) · 3.38 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[package]
name = "plotters"
version = "0.3.7"
authors = ["Hao Hou <haohou302@gmail.com>"]
edition = "2018"
license = "MIT"
msrv = "1.88"
description = "A Rust drawing library focus on data plotting for both WASM and native applications"
repository = "https://github.com/plotters-rs/plotters"
homepage = "https://plotters-rs.github.io/"
keywords = ["WebAssembly", "Visualization", "Plotting", "Drawing"]
categories = ["visualization", "wasm"]
readme = "../README.md"
exclude = ["doc-template", "plotters-doc-data"]
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
deprecated = { level = "allow" }
[dependencies]
num-traits = "0.2.14"
chrono = { version = "0.4.32", optional = true }
serde = { version = "1.0.139", optional = true }
[dependencies.plotters-backend]
version = "0.3.6"
path = "../plotters-backend"
[dependencies.plotters-bitmap]
version = "0.3.6"
default-features = false
optional = true
path = "../plotters-bitmap"
[dependencies.plotters-svg]
version = "0.3.6"
optional = true
path = "../plotters-svg"
[target.'cfg(not(all(target_arch = "wasm32", not(target_os = "wasi"))))'.dependencies]
fontique = "0.9.0"
harfrust = "0.6.0"
once_cell = "1.8.0"
skrifa = "0.42.1"
zeno = "0.3.3"
[target.'cfg(not(all(target_arch = "wasm32", not(target_os = "wasi"))))'.dependencies.image]
version = "0.25.9"
optional = true
default-features = false
features = ["jpeg", "png", "bmp"]
[target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dependencies.wasm-bindgen]
version = "0.2.89"
[target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dependencies.web-sys]
version = "0.3.66"
features = [
"Document",
"DomRect",
"Element",
"HtmlElement",
"Node",
"Window",
"HtmlCanvasElement",
"CanvasRenderingContext2d",
]
[features]
default = [
"bitmap_backend", "bitmap_encoder", "bitmap_gif",
"svg_backend",
"datetime",
"image",
"deprecated_items", "all_series", "all_elements",
"full_palette",
"colormaps"
]
all_series = ["area_series", "line_series", "point_series", "surface_series"]
all_elements = ["errorbar", "candlestick", "boxplot", "histogram"]
# Tier 1 Backends
bitmap_backend = ["plotters-bitmap"]
bitmap_encoder = ["plotters-bitmap/image_encoder"]
bitmap_gif = ["plotters-bitmap/gif_backend"]
svg_backend = ["plotters-svg"]
# Colors
full_palette = []
colormaps = []
# Elements
errorbar = []
candlestick = []
boxplot = []
# Series
histogram = []
area_series = []
line_series = []
point_series = []
surface_series = []
# Font compatibility
ab_glyph = []
# Misc
datetime = ["chrono"]
serialization = ["serde"]
evcxr = ["svg_backend"]
evcxr_bitmap = ["evcxr", "bitmap_backend", "plotters-svg/bitmap_encoder"]
deprecated_items = [] # Keep some of the deprecated items for backward compatibility
[dev-dependencies]
itertools = "0.14.0"
criterion = "0.8.1"
rayon = "1.5.1"
serde_json = "1.0.82"
serde_derive = "1.0.140"
plotters = { path = ".", features = ["serialization"] }
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
rand = "0.9.2"
rand_distr = "0.5.1"
rand_xorshift = "0.4.0"
[target.'cfg(all(target_arch = "wasm32", not(target_os = "wasi")))'.dev-dependencies]
wasm-bindgen-test = "0.3.39"
[[bench]]
name = "benchmark"
harness = false
path = "benches/main.rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "doc_cfg"]