You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1.0 KiB
33 lines
1.0 KiB
[package] |
|
authors = ["Christoph Groß <caemor@mailbox.org>"] |
|
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.4.0" |
|
edition = "2018" |
|
|
|
[badges] |
|
# travis-ci = { repository = "caemor/epd-waveshare" } |
|
|
|
[dependencies] |
|
embedded-graphics = { version = "0.6.1", optional = true} |
|
embedded-hal = {version = "0.2.3", features = ["unproven"]} |
|
bit_field = "0.10.1" |
|
|
|
[dev-dependencies] |
|
linux-embedded-hal = "0.3" |
|
embedded-hal-mock = "0.7" |
|
|
|
[features] |
|
default = ["graphics"] |
|
|
|
graphics = ["embedded-graphics"] |
|
|
|
# Offers an alternative fast full lut for type_a displays, but the refreshed screen isnt as clean looking |
|
type_a_alternative_faster_lut = []
|
|
|