forked from embedded-graphics/embedded-graphics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
79 lines (65 loc) · 1.79 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "embedded-graphics"
description = "Embedded graphics library for small hardware displays"
version = "0.7.1"
authors = ["James Waples <[email protected]>", "Ralf Fuest <[email protected]>"]
repository = "https://github.com/embedded-graphics/embedded-graphics"
documentation = "https://docs.rs/embedded-graphics"
categories = ["embedded", "no-std"]
keywords = ["embedded-graphics", "graphics", "embedded"]
readme = "./README.md"
license = "MIT OR Apache-2.0"
exclude = [
"/.circleci/",
"/.github/",
".gitignore",
"convert_1bpp.sh",
]
edition = "2021"
[workspace]
members = ["core"]
[package.metadata.docs.rs]
all-features = true
[badges]
circle-ci = { repository = "embedded-graphics/embedded-graphics", branch = "master" }
[dependencies]
az = "1.2.0"
fixed = { version = "1.14.0", optional = true, default-features = false }
float-cmp = "0.9.0"
micromath = { version = "2.0.0", default-features = false }
embedded-graphics-core = { path = "core", version = "0.3.2"}
byteorder = { version = "1.4.3", default-features = false }
defmt = { version = "0.3.2", optional = true }
[dev-dependencies]
arrayvec = { version = "0.7.2", default-features = false }
criterion = { version = "0.4.0", features = [ "html_reports" ] }
[features]
default = []
nalgebra_support = [ "embedded-graphics-core/nalgebra_support" ]
fixed_point = [ "fixed" ]
defmt = [ "dep:defmt", "embedded-graphics-core/defmt" ]
[[bench]]
harness = false
name = "primitives"
[[bench]]
harness = false
name = "primitives_fixed_point"
required-features = ["fixed_point"]
[[bench]]
harness = false
name = "fonts"
[[bench]]
harness = false
name = "image"
[[bench]]
harness = false
name = "contains"
[[bench]]
harness = false
name = "raw_data_iter"
[[bench]]
harness = false
name = "color_conversion"
[[bench]]
harness = false
name = "framebuffer"