update dependencies

This commit is contained in:
Valentin Trophime 2024-02-13 11:55:35 +01:00 committed by Yuri Iozzelli
parent ac73c3ba40
commit 7318f971cf
2 changed files with 6 additions and 6 deletions

View file

@ -2,7 +2,7 @@
[package] [package]
name = "ili9341" name = "ili9341"
version = "0.5.0" version = "0.5.1"
description = "A platform agnostic driver to interface with the ILI9341 (ald ILI9340C) TFT LCD display" description = "A platform agnostic driver to interface with the ILI9341 (ald ILI9340C) TFT LCD display"
authors = ["Yuri Iozzelli <y.iozzelli@gmail.com>"] authors = ["Yuri Iozzelli <y.iozzelli@gmail.com>"]
categories = ["embedded", "hardware-support", "no-std"] categories = ["embedded", "hardware-support", "no-std"]
@ -13,12 +13,12 @@ edition = "2018"
[dependencies] [dependencies]
display-interface = "0.4.1" display-interface = "0.5"
embedded-hal = "1.0.0-alpha.9" embedded-hal = "1.0.0"
[dependencies.embedded-graphics-core] [dependencies.embedded-graphics-core]
optional = true optional = true
version = "0.3" version = "0.4"
[dev-dependencies] [dev-dependencies]
cortex-m-rtic = "1.0.0" cortex-m-rtic = "1.0.0"

View file

@ -25,7 +25,7 @@
//! ``` //! ```
//! //!
//! [display-interface-spi crate]: https://crates.io/crates/display-interface-spi //! [display-interface-spi crate]: https://crates.io/crates/display-interface-spi
use embedded_hal::delay::DelayUs; use embedded_hal::delay::DelayNs;
use embedded_hal::digital::OutputPin; use embedded_hal::digital::OutputPin;
use core::iter::once; use core::iter::once;
@ -145,7 +145,7 @@ where
_display_size: SIZE, _display_size: SIZE,
) -> Result<Self> ) -> Result<Self>
where where
DELAY: DelayUs, DELAY: DelayNs,
SIZE: DisplaySize, SIZE: DisplaySize,
MODE: Mode, MODE: Mode,
{ {