You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
epd-waveshare/Cargo.toml

35 lines
954 B
TOML

[package]
authors = ["Christoph Groß <christoph-gross@mailbox.org>"]
categories = ["embedded", "hardware-support", "no-std"]
description = "An embedded-hal based driver for ePaper displays from Waveshare"
documentation = "https://docs.rs/eink-waveshare-rs"
homepage = "https://github.com/Caemor/eink-waveshare-rs"
keywords = ["ePaper", "Display"]
license = "ISC"
name = "eink_waveshare_rs"
readme = "README.md"
repository = "https://github.com/Caemor/eink-waveshare-rs.git"
version = "0.1.2"
[badges]
# Travis CI: `repository` in format "<user>/<project>" is required.
# `branch` is optional; default is `master`
travis-ci = { repository = "Caemor/eink-waveshare-rs" }
[features]
default = ["epd1in54", "epd2in9", "epd4in2", "graphics"]
graphics = ["embedded-graphics"]
epd1in54 = []
epd2in9 = []
epd4in2 = []
[dependencies.embedded-graphics]
optional = true
version = "0.4.3"
[dependencies.embedded-hal]
features = ["unproven"]
version = "0.2.1"