ili9341-rs/Cargo.toml

20 lines
565 B
TOML
Raw Normal View History

2018-02-24 13:37:17 +00:00
[package]
authors = ["Yuri Iozzelli <y.iozzelli@gmail.com>"]
2018-03-04 16:11:34 +00:00
categories = ["embedded", "hardware-support", "no-std"]
description = "A platform agnostic driver to interface with the ILI9341 (ald ILI9340C) TFT LCD display"
2018-03-04 16:11:34 +00:00
keywords = ["embedded-hal-driver", "display", "LCD"]
license = "MIT OR Apache-2.0"
name = "ili9341"
2018-03-04 16:11:34 +00:00
repository = "https://github.com/yuri91/ili9341-rs"
version = "0.1.7"
2018-02-24 13:37:17 +00:00
[dependencies]
embedded-hal = "0.2.1"
2018-06-19 21:29:24 +00:00
[dependencies.embedded-graphics]
optional = true
version = "0.4.4"
2018-06-19 21:29:24 +00:00
[features]
default = ["graphics"]
graphics = ["embedded-graphics"]