-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathCargo.toml
42 lines (32 loc) · 916 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
40
41
42
[package]
name = "ssd1675"
version = "0.5.0"
authors = ["Wesley Moore <[email protected]>"]
description = "Driver for the SSD1675 e-Paper display (EPD) controller, for use with embedded-hal"
documentation = "https://docs.rs/ssd1675"
repository = "https://github.com/wezm/ssd1675"
readme = "README.md"
keywords = ["embedded", "epd", "epaper", "display", "ssd1675"]
categories = ["embedded", "no-std"]
license = "MIT OR Apache-2.0"
[dependencies]
libm = "0.2.2"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2.6"
[dependencies.embedded-graphics]
optional = true
version = "0.7.1"
[dependencies.linux-embedded-hal]
optional = true
version = "0.3.2"
[dependencies.profont]
optional = true
version = "0.5.0"
[features]
default = ["graphics"]
graphics = ["embedded-graphics"]
examples = ["linux-embedded-hal", "profont"]
[[example]]
name = "raspberry_pi_inky_phat"
required-features = ["examples"]