From 94bbb9c05cd9cb7248d0a50633b3635f88eae45c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Feb 2026 20:25:43 +0000 Subject: [PATCH 1/2] chore(deps): update rig-core requirement from 0.29.0 to 0.31.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.31.0) --- updated-dependencies: - dependency-name: rig-core dependency-version: 0.31.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 2d7a69dc..9429975e 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.31.0" tokio = { version = "1", features = ["full"] } rmcp = { workspace = true, features = [ "client", From 365d52baaf5f3b5cf88db8080d5fcea2a4998c01 Mon Sep 17 00:00:00 2001 From: Dale Seo <5466341+DaleSeo@users.noreply.github.com> Date: Tue, 24 Feb 2026 11:55:59 -0500 Subject: [PATCH 2/2] fix: address breaking changes --- examples/rig-integration/src/chat.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/rig-integration/src/chat.rs b/examples/rig-integration/src/chat.rs index bc50be1a..13d28ab5 100644 --- a/examples/rig-integration/src/chat.rs +++ b/examples/rig-integration/src/chat.rs @@ -46,7 +46,7 @@ where output_agent(&text, &mut output).await?; } Ok(MultiTurnStreamItem::StreamAssistantItem( - StreamedAssistantContent::ToolCall(tool_call), + StreamedAssistantContent::ToolCall { tool_call, .. }, )) => { let name = &tool_call.function.name; let arguments = &tool_call.function.arguments;