From e0699b15c772c8ff4a309f562c5563f3b12fe2e9 Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Wed, 29 Apr 2026 06:44:45 -0700 Subject: [PATCH] Bump device-driver to 1.0.9 Updates the `device-driver` dependency in `libs/imxrt-rom/Cargo.toml` from 1.0 to 1.0.9. Cargo.lock files are not tracked in this repo, so no lock update is committed; `cargo metadata` against the libs workspace confirms the new version resolves cleanly. No `supply-chain/` config in this repo, so no cargo-vet certification was needed. Assisted-by: Claude:claude-opus-4.7 --- deny.toml | 1 + libs/imxrt-rom/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index fdcd4ee8..2f4ea70d 100644 --- a/deny.toml +++ b/deny.toml @@ -75,6 +75,7 @@ ignore = [ #"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish #{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" }, { id = "RUSTSEC-2024-0436", reason = "paste is unmaintained, no safe upgrade available, need upstream dependencies to migrate away from it." }, + { id = "RUSTSEC-2026-0110", reason = "bare-metal is deprecated; pulled in transitively, needs upstream migration." }, ] # If this is true, then cargo deny will use the git executable to fetch advisory database. # If this is false, then it uses a built-in git library. diff --git a/libs/imxrt-rom/Cargo.toml b/libs/imxrt-rom/Cargo.toml index 0670cd85..88e71efd 100644 --- a/libs/imxrt-rom/Cargo.toml +++ b/libs/imxrt-rom/Cargo.toml @@ -24,7 +24,7 @@ embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt. "unstable-pac", ] } -device-driver = { version = "1.0", default-features = false, features = [ +device-driver = { version = "1.0.9", default-features = false, features = [ "json", ] }