-
Notifications
You must be signed in to change notification settings - Fork 281
/
Cargo.toml
44 lines (36 loc) · 1.04 KB
/
Cargo.toml
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
[package]
name = "plotters-bitmap"
version = "0.3.7"
authors = ["Hao Hou <[email protected]>"]
edition = "2018"
license = "MIT"
description = "Plotters Bitmap Backend"
homepage = "https://plotters-rs.github.io"
repository = "https://github.com/plotters-rs/plotters"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
gif = { version = "0.12.0", optional = true }
[dependencies.plotters-backend]
version = "0.3.6"
path = "../plotters-backend"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.image]
version = "0.24.3"
optional = true
default-features = false
features = ["jpeg", "png", "bmp"]
[features]
default = ["image_encoder", "gif_backend"]
image_encoder = ["image"]
gif_backend = ["gif", "image_encoder"]
[dev-dependencies.plotters]
default-features = false
features = ["ttf", "line_series", "bitmap_backend"]
path = "../plotters"
[dev-dependencies]
criterion = "0.5.1"
rayon = "1.5.1"
[[bench]]
name = "benchmark"
harness = false
path = "benches/main.rs"