From 5071e92b3170e9306ba35b39d1a7c1477e7bdbdd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 17 Nov 2024 17:02:43 +0000 Subject: [PATCH] Update heapless requirement from 0.7 to 0.8 in /examples/rp2040 Updates the requirements on [heapless](https://github.com/japaric/heapless) to permit the latest version. - [Changelog](https://github.com/rust-embedded/heapless/blob/v0.7.17/CHANGELOG.md) - [Commits](https://github.com/japaric/heapless/compare/v0.7.0...v0.7.17) --- updated-dependencies: - dependency-name: heapless dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/rp2040/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rp2040/Cargo.toml b/examples/rp2040/Cargo.toml index d9cbc4b..7d5e7be 100644 --- a/examples/rp2040/Cargo.toml +++ b/examples/rp2040/Cargo.toml @@ -12,7 +12,7 @@ cortex-m-rt = "0.7" embedded-hal = { version = "0.2.5", features = ["unproven"] } usb-device = { version = "0.2", features = ["defmt"] } -heapless = { version = "0.7", features = ["defmt-impl"] } +heapless = { version = "0.8", features = ["defmt-impl"] } defmt = "0.3" defmt-rtt = "0.4"