From f85e37ec78b52859ff73a609e6b96dd7072133c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 21:16:20 +0000 Subject: [PATCH] Update syn requirement from 2.0 to 3.0 Updates the requirements on [syn](https://github.com/dtolnay/syn) to permit the latest version. - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.0...3.0.2) --- updated-dependencies: - dependency-name: syn dependency-version: 3.0.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 2 +- modules/graphics/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 60fef334..fe0b426d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -114,7 +114,7 @@ weather = { path = "executables/weather" } miniserde = { version = "0.1" } bindgen = { version = "0.72" } cbindgen = { version = "0.29" } -syn = { version = "2.0" } +syn = { version = "3.0" } quote = { version = "1.0" } proc-macro2 = { version = "1.0" } lvgl_rust_sys = { git = "https://github.com/Xila-Project/lvgl_rust_sys.git", default-features = false } diff --git a/modules/graphics/Cargo.toml b/modules/graphics/Cargo.toml index 5bcf2e4c..a9e63b7d 100644 --- a/modules/graphics/Cargo.toml +++ b/modules/graphics/Cargo.toml @@ -8,7 +8,7 @@ cstr_core = "0.2.6" file_system = { workspace = true } lvgl_rust_sys = { git = "https://github.com/Xila-Project/lvgl_rust_sys.git", default-features = false } #lvgl_rust_sys = { workspace = true, default-features = false } -syn = { version = "2.0", features = ["full"] } +syn = { version = "3.0", features = ["full"] } quote = "1.0" time = { workspace = true } shared = { workspace = true }