From 4c517c16c4ee69210f08a114bb8c9f038a86d826 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Jan 2025 12:10:11 +0000 Subject: [PATCH] fix(deps): update esp-println requirement in /tests/esp32c3 Updates the requirements on [esp-println](https://github.com/esp-rs/esp-hal) to permit the latest version. - [Release notes](https://github.com/esp-rs/esp-hal/releases) - [Changelog](https://github.com/esp-rs/esp-hal/blob/v0.12.0/CHANGELOG.md) - [Commits](https://github.com/esp-rs/esp-hal/compare/v0.12.0...v0.12.0) --- updated-dependencies: - dependency-name: esp-println dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- tests/esp32c3/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/esp32c3/Cargo.toml b/tests/esp32c3/Cargo.toml index 7c977f98..22d80a90 100644 --- a/tests/esp32c3/Cargo.toml +++ b/tests/esp32c3/Cargo.toml @@ -18,7 +18,7 @@ esp-backtrace = { version = "0.14.0", features = [ "panic-handler", "println", ] } -esp-println = { version = "0.12.0", default-features = false, features = ["esp32c3", "jtag-serial", "colors"] } +esp-println = { version = "0.13.0", default-features = false, features = ["esp32c3", "jtag-serial", "colors"] } # Driver to be Tested tmag5273 = { path = "../../" }