2018-02-24 13:37:17 +00:00
|
|
|
[package]
|
2018-10-27 20:47:50 +00:00
|
|
|
name = "ili9341"
|
2021-06-10 16:40:14 +00:00
|
|
|
version = "0.5.0"
|
2018-10-27 20:47:50 +00:00
|
|
|
description = "A platform agnostic driver to interface with the ILI9341 (ald ILI9340C) TFT LCD display"
|
2018-02-24 13:37:17 +00:00
|
|
|
authors = ["Yuri Iozzelli <y.iozzelli@gmail.com>"]
|
2018-03-04 16:11:34 +00:00
|
|
|
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"
|
2020-01-28 17:53:24 +00:00
|
|
|
edition = "2018"
|
2018-10-27 20:47:50 +00:00
|
|
|
|
|
|
|
|
2018-02-24 13:37:17 +00:00
|
|
|
[dependencies]
|
2021-05-10 22:08:17 +00:00
|
|
|
display-interface = "0.4.1"
|
2021-06-10 16:36:21 +00:00
|
|
|
embedded-hal = "0.2.5"
|
2018-06-19 21:29:24 +00:00
|
|
|
|
2021-05-10 23:21:06 +00:00
|
|
|
[dependencies.embedded-graphics-core]
|
|
|
|
optional = true
|
|
|
|
version = "0.3"
|
|
|
|
|
|
|
|
|
2018-06-19 21:29:24 +00:00
|
|
|
[features]
|
|
|
|
default = ["graphics"]
|
2021-06-10 16:34:03 +00:00
|
|
|
graphics = ["embedded-graphics-core"]
|
2021-05-10 23:21:06 +00:00
|
|
|
|