-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
39 lines (33 loc) · 930 Bytes
/
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
[package]
name = "tinybmp"
description = "No-std, low memory footprint BMP image loader"
version = "0.6.0"
authors = ["James Waples <james@wapl.es>", "Ralf Fuest <mail@rfuest.de>"]
edition = "2021"
repository = "https://github.com/embedded-graphics/tinybmp"
documentation = "https://docs.rs/tinybmp"
categories = ["embedded", "no-std", "multimedia::images"]
keywords = ["graphics", "embedded-graphics", "bmp", "bitmap", "image"]
readme = "./README.md"
license = "MIT OR Apache-2.0"
exclude = [
"/.github/",
"/.circleci/",
".gitignore",
]
[badges]
circle-ci = { repository = "embedded-graphics/tinybmp", branch = "master" }
[[test]]
name = "embedded_graphics"
[[bench]]
name = "parse"
harness = false
[[bench]]
name = "draw"
harness = false
[dependencies]
embedded-graphics = "0.8.0"
[dev-dependencies]
clap = { version = "3.1.6", features = ["derive"] }
criterion = "0.3.5"
embedded-graphics-simulator = "0.5.0"