1[package]
2name = "plotters-bitmap"
3version = "0.3.3"
4authors = ["Hao Hou <haohou302@gmail.com>"]
5edition = "2018"
6license = "MIT"
7description = "Plotters Bitmap Backend"
8homepage = "https://plotters-rs.github.io"
9repository = "https://github.com/plotters-rs/plotters"
10readme = "README.md"
11
12# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13
14[dependencies]
15gif = { version = "0.12.0", optional = true }
16
17[dependencies.plotters-backend]
18version = "0.3.5"
19path = "../plotters-backend"
20
21[target.'cfg(not(target_arch = "wasm32"))'.dependencies.image]
22version = "0.24.3"
23optional = true
24default-features = false
25features = ["jpeg", "png", "bmp"]
26
27[features]
28default = ["image_encoder", "gif_backend"]
29image_encoder = ["image"]
30gif_backend = ["gif", "image_encoder"]
31
32[dev-dependencies.plotters]
33default_features = false
34features = ["ttf", "line_series", "bitmap_backend"]
35path = "../plotters"
36
37[dev-dependencies]
38criterion = "0.4.0"
39rayon = "1.5.1"
40
41[[bench]]
42name = "benchmark"
43harness = false
44path = "benches/main.rs"
45