ili9341-rs/Cargo.toml

31 lines
728 B
TOML
Raw Normal View History

2018-02-24 13:37:17 +00:00
[package]
2018-10-27 20:47:50 +00:00
name = "ili9341"
2020-10-25 08:51:07 +00:00
version = "0.4.1"
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"
2020-09-01 20:18:05 +00:00
embedded-hal = "0.2.4"
2018-06-19 21:29:24 +00:00
[dependencies.embedded-graphics]
optional = true
2020-09-01 20:18:05 +00:00
version = "0.6.2"
2018-06-19 21:29:24 +00:00
[dependencies.embedded-graphics-core]
optional = true
version = "0.3"
2018-06-19 21:29:24 +00:00
[features]
default = ["graphics"]
graphics = ["embedded-graphics"]
graphics-core = ["embedded-graphics-core"]