From 23fb694c53b2ddfedd02bdea3e006baa8a04a225 Mon Sep 17 00:00:00 2001 From: "gominimal-aw-bot[bot]" <281738952+gominimal-aw-bot[bot]@users.noreply.github.com> Date: Wed, 29 Jul 2026 20:33:59 +0000 Subject: [PATCH] fix(minimald): drop unused either dependency cargo-machete's hygiene check flagged `either` as declared in crates/minimald/Cargo.toml with no use in the crate, turning the nightly-tests hygiene job red. Searching crates/minimald confirms the crate never references the either crate: every `either`/`Either` occurrence is the English word inside a comment. Remove the orphaned declaration, matching prior unused-dep cleanups in minimald (chrono in #594, nix in #448). Co-Authored-By: Claude Opus 4.8 --- Cargo.lock | 1 - crates/minimald/Cargo.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9c32be19c..178213689 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3798,7 +3798,6 @@ dependencies = [ "constcat", "decode", "diagnostics", - "either", "fd-lock", "futures", "graph", diff --git a/crates/minimald/Cargo.toml b/crates/minimald/Cargo.toml index b387b1766..8f11ef912 100644 --- a/crates/minimald/Cargo.toml +++ b/crates/minimald/Cargo.toml @@ -34,7 +34,6 @@ chrono.workspace = true clap.workspace = true clap_complete.workspace = true constcat.workspace = true -either.workspace = true fd-lock.workspace = true futures.workspace = true size.workspace = true