From 608d4aaaa195b95626f17aa4bbca2d69609f14cc Mon Sep 17 00:00:00 2001 From: Lahfir Date: Thu, 19 Feb 2026 10:46:47 -0800 Subject: [PATCH] fix: suppress dead_code lint on BatchCommand deserializer struct --- crates/core/src/commands/batch.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/core/src/commands/batch.rs b/crates/core/src/commands/batch.rs index 22b98c0..f64149d 100644 --- a/crates/core/src/commands/batch.rs +++ b/crates/core/src/commands/batch.rs @@ -8,6 +8,7 @@ pub struct BatchArgs { } #[derive(Debug, Deserialize)] +#[allow(dead_code)] struct BatchCommand { command: String, #[serde(default)]