mirror of
https://github.com/yuri91/ili9341-rs.git
synced 2024-11-21 14:30:58 +00:00
update dependencies
This commit is contained in:
parent
ac73c3ba40
commit
7318f971cf
2 changed files with 6 additions and 6 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
[package]
|
||||
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"
|
||||
authors = ["Yuri Iozzelli <y.iozzelli@gmail.com>"]
|
||||
categories = ["embedded", "hardware-support", "no-std"]
|
||||
|
@ -13,12 +13,12 @@ edition = "2018"
|
|||
|
||||
|
||||
[dependencies]
|
||||
display-interface = "0.4.1"
|
||||
embedded-hal = "1.0.0-alpha.9"
|
||||
display-interface = "0.5"
|
||||
embedded-hal = "1.0.0"
|
||||
|
||||
[dependencies.embedded-graphics-core]
|
||||
optional = true
|
||||
version = "0.3"
|
||||
version = "0.4"
|
||||
|
||||
[dev-dependencies]
|
||||
cortex-m-rtic = "1.0.0"
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
//! ```
|
||||
//!
|
||||
//! [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 core::iter::once;
|
||||
|
@ -145,7 +145,7 @@ where
|
|||
_display_size: SIZE,
|
||||
) -> Result<Self>
|
||||
where
|
||||
DELAY: DelayUs,
|
||||
DELAY: DelayNs,
|
||||
SIZE: DisplaySize,
|
||||
MODE: Mode,
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue