ili9341-rs/Cargo.toml
Daniel Egger dc9a389b79 Rough first conversion to display-interface
Tested with SPI display

Signed-off-by: Daniel Egger <daniel@eggers-club.de>
2020-06-01 14:30:03 +02:00

24 lines
610 B
TOML

[package]
name = "ili9341"
version = "0.3.0"
description = "A platform agnostic driver to interface with the ILI9341 (ald ILI9340C) TFT LCD display"
authors = ["Yuri Iozzelli <y.iozzelli@gmail.com>"]
categories = ["embedded", "hardware-support", "no-std"]
keywords = ["embedded-hal-driver", "display", "LCD"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yuri91/ili9341-rs"
edition = "2018"
[dependencies]
display-interface = "0.4"
embedded-hal = "0.2.3"
[dependencies.embedded-graphics]
optional = true
version = "0.6.1"
[features]
default = ["graphics"]
graphics = ["embedded-graphics"]