forked from ReinoutHeeck/epd-waveshare
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
59 lines (46 loc) · 1.54 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
[package]
authors = ["Christoph Groß <[email protected]>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "An embedded-hal based driver for ePaper displays from Waveshare formerly published as eink-waveshare-rs"
documentation = "https://docs.rs/epd-waveshare"
homepage = "https://github.com/caemor/epd-waveshare"
keywords = ["ePaper", "Display", "epd", "eink"]
license = "ISC"
name = "epd-waveshare"
readme = "README.md"
repository = "https://github.com/Caemor/epd-waveshare.git"
version = "0.5.0"
edition = "2021"
[badges]
# travis-ci = { repository = "caemor/epd-waveshare" }
[dependencies]
embedded-graphics-core = { version = "0.3.2", optional = true}
embedded-hal = {version = "0.2.4", features = ["unproven"]}
bit_field = "0.10.1"
[dev-dependencies]
embedded-graphics = "0.7.1"
embedded-hal-mock = "0.8"
[target.'cfg(unix)'.dev-dependencies]
linux-embedded-hal = "0.3"
[[example]]
name = "epd1in54_no_graphics"
required-features = ["linux-dev"]
[[example]]
name = "epd2in13_v2"
required-features = ["linux-dev"]
[[example]]
name = "epd2in13bc"
required-features = ["linux-dev"]
[[example]]
name = "epd4in2_variable_size"
required-features = ["linux-dev"]
[[example]]
name = "epd4in2"
required-features = ["linux-dev"]
[features]
# Remove the linux-dev feature to build the tests on non unix systems
default = ["graphics", "linux-dev"]
graphics = ["embedded-graphics-core"]
linux-dev = []
# Offers an alternative fast full lut for type_a displays, but the refreshed screen isnt as clean looking
type_a_alternative_faster_lut = []