ili9341-rs/Cargo.toml

40 lines
935 B
TOML
Raw Normal View History

# Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
2018-02-24 13:37:17 +00:00
[package]
2018-10-27 20:47:50 +00:00
name = "ili9341"
2024-02-13 11:24:18 +00:00
version = "0.6.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]
2024-02-13 10:55:35 +00:00
display-interface = "0.5"
embedded-hal = "1.0.0"
2018-06-19 21:29:24 +00:00
[dependencies.embedded-graphics-core]
optional = true
2024-02-13 10:55:35 +00:00
version = "0.4"
[dev-dependencies]
cortex-m-rtic = "1.0.0"
cortex-m = "0.7.3"
cortex-m-rt = "0.7.0"
defmt-rtt = "0.3.0"
panic-semihosting = "0.6"
[dev-dependencies.stm32f4xx-hal]
version = "0.12.0"
features = ["stm32f411"]
2018-06-19 21:29:24 +00:00
[features]
default = ["graphics"]
graphics = ["embedded-graphics-core"]
[[example]]
name = "rtic"