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