From 913073d83dba2b91b1278088a05371d9f9edeff6 Mon Sep 17 00:00:00 2001 From: Illia Polosukhin Date: Wed, 18 Feb 2026 01:12:02 -0800 Subject: [PATCH] fix: prevent release-plz from publishing ironclaw-bench The benchmarks crate is an internal tool, not intended for crates.io. Adding `publish = false` fixes the release-plz CI failure caused by the path-only ironclaw dependency lacking a version specifier. Co-Authored-By: Claude Opus 4.6 --- benchmarks/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 0ad3ef35..acaeb64d 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -5,6 +5,7 @@ edition = "2024" rust-version = "1.85" description = "Benchmarking harness for IronClaw agent" license = "MIT OR Apache-2.0" +publish = false [[bin]] name = "ironclaw-bench"