mirror of
https://github.com/yuri91/ili9341-rs.git
synced 2025-02-15 12:45:12 +00:00
39 lines
935 B
TOML
39 lines
935 B
TOML
# Copyright 2022 Arm Limited and/or its affiliates <open-source-office@arm.com>
|
|
|
|
[package]
|
|
name = "ili9341"
|
|
version = "0.6.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.5"
|
|
embedded-hal = "1.0.0"
|
|
|
|
[dependencies.embedded-graphics-core]
|
|
optional = true
|
|
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"]
|
|
|
|
[features]
|
|
default = ["graphics"]
|
|
graphics = ["embedded-graphics-core"]
|
|
|
|
[[example]]
|
|
name = "rtic"
|