From 854c6588b73bb3e8652f3f7e72e28b61ef53fa28 Mon Sep 17 00:00:00 2001 From: Alex Holmberg Date: Fri, 26 Dec 2025 17:54:41 +0100 Subject: [PATCH] fix: add version to rig-bedrock dependency for crates.io publishing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit cargo publish requires all dependencies to have a version specified. The path is used locally but version is used when publishing. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6c373e0b..7a85c2de 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -73,7 +73,7 @@ futures-util = "0.3" # Agent dependencies (using Rig - LLM application framework) rig-core = { version = "0.27", features = ["derive"] } -rig-bedrock = { path = "vendor/rig-bedrock" } # Vendored with fix for extended thinking + tool calls +rig-bedrock = { version = "0.3", path = "vendor/rig-bedrock" } # Vendored with fix for extended thinking + tool calls # Diff rendering for file confirmation UI similar = "2.6" @@ -110,4 +110,4 @@ path = "examples/security_analysis.rs" # The upstream version drops Reasoning blocks when a tool call is present. # See: vendor/rig-bedrock/src/types/assistant_content.rs for the fix. [patch.crates-io] -rig-bedrock = { path = "vendor/rig-bedrock" } +rig-bedrock = { version = "0.3", path = "vendor/rig-bedrock" }