tinybmp 0.7.0

No-std, low memory footprint BMP image loader
Documentation
[[bench]]
harness = false
name = "draw"
path = "benches/draw.rs"

[[bench]]
harness = false
name = "parse"
path = "benches/parse.rs"

[dependencies.embedded-graphics]
version = "0.8.0"

[dev-dependencies.clap]
features = ["derive"]
version = "3.1.6"

[dev-dependencies.criterion]
version = "0.3.5"

[dev-dependencies.embedded-graphics-simulator]
default-features = false
version = "0.5.0"

[[example]]
name = "display"
path = "examples/display.rs"

[lib]
name = "tinybmp"
path = "src/lib.rs"

[package]
authors = ["James Waples <james@wapl.es>", "Ralf Fuest <mail@rfuest.de>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["embedded", "no-std", "multimedia::images"]
description = "No-std, low memory footprint BMP image loader"
documentation = "https://docs.rs/tinybmp"
edition = "2021"
exclude = ["/.github/", ".gitignore"]
keywords = ["graphics", "embedded-graphics", "bmp", "bitmap", "image"]
license = "MIT OR Apache-2.0"
name = "tinybmp"
readme = "README.md"
repository = "https://github.com/embedded-graphics/tinybmp"
version = "0.7.0"

[[test]]
name = "chessboard-16px-1bit"
path = "tests/chessboard-16px-1bit.rs"

[[test]]
name = "chessboard-8px-1bit"
path = "tests/chessboard-8px-1bit.rs"

[[test]]
name = "chessboard-8px-24bit"
path = "tests/chessboard-8px-24bit.rs"

[[test]]
name = "chessboard-8px-color-16bit"
path = "tests/chessboard-8px-color-16bit.rs"

[[test]]
name = "colors_8bpp_indexed"
path = "tests/colors_8bpp_indexed.rs"

[[test]]
name = "coordinates"
path = "tests/coordinates.rs"

[[test]]
name = "embedded_graphics"
path = "tests/embedded_graphics.rs"

[[test]]
name = "errors"
path = "tests/errors.rs"

[[test]]
name = "logo"
path = "tests/logo.rs"