From 5baa7ce298b54d2635a0119cb4e6058d9e3161bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 15:12:51 +0100 Subject: [PATCH] Update heapless requirement in /examples/i2s-controller-demo (#444) Updates the requirements on [heapless](https://github.com/japaric/heapless) to permit the latest version. - [Changelog](https://github.com/rust-embedded/heapless/blob/main/CHANGELOG.md) - [Commits](https://github.com/japaric/heapless/compare/v0.7.10...v0.8.0) --- updated-dependencies: - dependency-name: heapless dependency-type: direct:production ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- examples/i2s-controller-demo/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/i2s-controller-demo/Cargo.toml b/examples/i2s-controller-demo/Cargo.toml index e5f934fc..021af392 100644 --- a/examples/i2s-controller-demo/Cargo.toml +++ b/examples/i2s-controller-demo/Cargo.toml @@ -15,5 +15,5 @@ embedded-hal = "1.0.0" systick-monotonic = "1.0.0" rtt-target = { version = "0.3.1", features = ["cortex-m"] } nrf52840-hal = { features = ["rt"], path = "../../nrf52840-hal" } -heapless = "0.7.10" +heapless = "0.8.0" small_morse = "0.1.0"