1[package]
2name = "tinybmp"
3description = "No-std, low memory footprint BMP image loader"
4version = "0.5.0"
5authors = ["James Waples <james@wapl.es>", "Ralf Fuest <mail@rfuest.de>"]
6edition = "2021"
7repository = "https://github.com/embedded-graphics/tinybmp"
8documentation = "https://docs.rs/tinybmp"
9categories = ["embedded", "no-std", "multimedia::images"]
10keywords = ["graphics", "embedded-graphics", "bmp", "bitmap", "image"]
11readme = "./README.md"
12license = "MIT OR Apache-2.0"
13exclude = [
14 "/.github/",
15 "/.circleci/",
16 ".gitignore",
17]
18
19[badges]
20circle-ci = { repository = "embedded-graphics/tinybmp", branch = "master" }
21
22[[test]]
23name = "embedded_graphics"
24
25[[bench]]
26name = "parse"
27harness = false
28
29[[bench]]
30name = "draw"
31harness = false
32
33[dependencies]
34embedded-graphics = "0.8.0"
35
36[dev-dependencies]
37clap = { version = "3.1.6", features = ["derive"] }
38criterion = "0.3.5"
39embedded-graphics-simulator = "0.5.0"
40