-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (34 loc) · 985 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
[package]
name = "il0373"
version = "0.2.0"
authors = ["Greg Green <ggreen@bit-builder.com>"]
description = "Driver for the IL0373 e-Paper display (EPD) controller, for use with embedded-graphics"
documentation = "https://docs.rs/il0373"
repository = "https://github.com/gpgreen/il0373"
readme = "README.md"
keywords = ["epaper", "il0373", "embedded-graphics"]
categories = ["embedded", "graphics", "hardware-support", "no-std"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/gpgreen/il0373"
[dependencies]
embedded-graphics-core = "0.4.0"
embedded-hal = { version = "0.2.7", features = ["unproven"] }
[dependencies.embedded-graphics]
optional = true
version = "0.8.1"
[dev-dependencies]
linux-embedded-hal = "0.3.2"
[profile.dev]
lto = true
incremental = false
codegen-units = 1
opt-level = "s"
[profile.release]
panic = "abort"
lto = true
codegen-units = 1
[features]
default = ["graphics"]
graphics = ["embedded-graphics"]
sram = []
test = ["embedded-graphics"]