1 | [package] |
2 | name = "embedded-graphics" |
3 | description = "Embedded graphics library for small hardware displays" |
4 | version = "0.8.1" |
5 | authors = ["James Waples <james@wapl.es>" , "Ralf Fuest <mail@rfuest.de>" ] |
6 | repository = "https://github.com/embedded-graphics/embedded-graphics" |
7 | documentation = "https://docs.rs/embedded-graphics" |
8 | categories = ["embedded" , "no-std" ] |
9 | keywords = ["embedded-graphics" , "graphics" , "embedded" ] |
10 | readme = "./README.md" |
11 | license = "MIT OR Apache-2.0" |
12 | exclude = [ |
13 | "/.circleci/" , |
14 | "/.github/" , |
15 | ".gitignore" , |
16 | "convert_1bpp.sh" , |
17 | ] |
18 | edition = "2021" |
19 | |
20 | [workspace] |
21 | members = ["core" ] |
22 | |
23 | [package.metadata.docs.rs] |
24 | all-features = true |
25 | |
26 | [badges] |
27 | circle-ci = { repository = "embedded-graphics/embedded-graphics" , branch = "master" } |
28 | |
29 | [dependencies] |
30 | az = "1.2.0" |
31 | fixed = { version = "1.14.0" , optional = true, default-features = false } |
32 | float-cmp = "0.9.0" |
33 | micromath = { version = "2.0.0" , default-features = false } |
34 | embedded-graphics-core = { path = "core" , version = "^0.4.0" } |
35 | byteorder = { version = "1.4.3" , default-features = false } |
36 | defmt = { version = "0.3.2" , optional = true } |
37 | |
38 | [dev-dependencies] |
39 | arrayvec = { version = "0.7.2" , default-features = false } |
40 | criterion = { version = "0.4.0" , features = [ "html_reports" ] } |
41 | |
42 | [features] |
43 | default = [] |
44 | nalgebra_support = [ "embedded-graphics-core/nalgebra_support" ] |
45 | fixed_point = [ "fixed" ] |
46 | defmt = [ "dep:defmt" , "embedded-graphics-core/defmt" ] |
47 | |
48 | [[bench]] |
49 | harness = false |
50 | name = "primitives" |
51 | |
52 | [[bench]] |
53 | harness = false |
54 | name = "primitives_fixed_point" |
55 | required-features = ["fixed_point" ] |
56 | |
57 | [[bench]] |
58 | harness = false |
59 | name = "fonts" |
60 | |
61 | [[bench]] |
62 | harness = false |
63 | name = "image" |
64 | |
65 | [[bench]] |
66 | harness = false |
67 | name = "contains" |
68 | |
69 | [[bench]] |
70 | harness = false |
71 | name = "raw_data_iter" |
72 | |
73 | [[bench]] |
74 | harness = false |
75 | name = "color_conversion" |
76 | |
77 | [[bench]] |
78 | harness = false |
79 | name = "framebuffer" |
80 | |