From fb47f18731300f0c8eb55f9c79a7f979c7c7a80b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Feb 2026 19:12:32 +0000 Subject: [PATCH 1/2] chore(deps): update rig-core requirement from 0.29.0 to 0.30.0 Updates the requirements on [rig-core](https://github.com/0xPlaygrounds/rig) to permit the latest version. - [Release notes](https://github.com/0xPlaygrounds/rig/releases) - [Commits](https://github.com/0xPlaygrounds/rig/compare/rig-core-v0.29.0...rig-core-v0.30.0) --- updated-dependencies: - dependency-name: rig-core dependency-version: 0.30.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/rig-integration/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rig-integration/Cargo.toml b/examples/rig-integration/Cargo.toml index afb920b93..99465bd7c 100644 --- a/examples/rig-integration/Cargo.toml +++ b/examples/rig-integration/Cargo.toml @@ -13,7 +13,7 @@ readme = { workspace = true } publish = false [dependencies] -rig-core = "0.29.0" +rig-core = "0.30.0" tokio = { version = "1", features = ["full"] } rmcp = { workspace = true, features = [ "client", From 2f33a6633a1864a7f07c8b5e3bd24b7a454bbf68 Mon Sep 17 00:00:00 2001 From: Alex Hancock Date: Tue, 17 Feb 2026 09:36:59 -0500 Subject: [PATCH 2/2] fix: syntax adjustment --- examples/rig-integration/src/chat.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/rig-integration/src/chat.rs b/examples/rig-integration/src/chat.rs index bc50be1ac..422447676 100644 --- a/examples/rig-integration/src/chat.rs +++ b/examples/rig-integration/src/chat.rs @@ -46,7 +46,10 @@ where output_agent(&text, &mut output).await?; } Ok(MultiTurnStreamItem::StreamAssistantItem( - StreamedAssistantContent::ToolCall(tool_call), + StreamedAssistantContent::ToolCall { + tool_call: _, + internal_call_id: _, + }, )) => { let name = &tool_call.function.name; let arguments = &tool_call.function.arguments;