From e6fae8cbdd995d6a54fe3ebb52678535964108aa Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Thu, 14 May 2026 14:51:28 +0100 Subject: [PATCH] fix(src/main.rs): remove unused miette::IntoDiagnostic import The import was unused (rg confirms IntoDiagnostic is referenced nowhere else in the file) and was being promoted to a compile error by RUSTFLAGS=-Dwarnings, blocking every Dependabot PR with error: unused import: miette::IntoDiagnostic. Co-Authored-By: Claude Opus 4.7 --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 2d4f9e2..c83cdf6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,6 @@ use bunsenite::{NickelLoader, VERSION}; use clap::{Parser, Subcommand}; -use miette::IntoDiagnostic; use std::path::PathBuf; use std::process;