From 28ade6e549640d83c4b412889ae425221f365db5 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Wed, 28 Jan 2026 16:38:33 +0100 Subject: [PATCH 1/2] chore(deps): update `half` dependency as previous one was yanked --- Cargo.lock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e62a6986..cf7688eb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -336,9 +336,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" [[package]] name = "half" -version = "2.7.0" +version = "2.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e54c115d4f30f52c67202f079c5f9d8b49db4691f460fdb0b4c2e838261b2ba5" +checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b" dependencies = [ "cfg-if", "crunchy", From a9a04caec3ce76ec5a82c0f5eb9586a2d495ee65 Mon Sep 17 00:00:00 2001 From: Samuel Tardieu Date: Wed, 28 Jan 2026 16:39:59 +0100 Subject: [PATCH 2/2] chore(deny): ignore bincode advisory until iai-callgrind switches to an alternative --- deny.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 288725c8..1dcf1261 100644 --- a/deny.toml +++ b/deny.toml @@ -66,7 +66,9 @@ db-urls = ["https://github.com/rustsec/advisory-db"] yanked = "warn" # A list of advisory IDs to ignore. Note that ignored advisories will still # output a note when they are encountered. -ignore = [] +ignore = [ + "RUSTSEC-2025-0141", # bincode is no longer maintained, and is used by iai-callgrind +] # Threshold for security vulnerabilities, any vulnerability with a CVSS score # lower than the range specified will be ignored. Note that ignored advisories # will still output a note when they are encountered.