From c51ed297dc39762ff40f90c36a6006e1572c0fdb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jun 2026 14:45:29 +0000 Subject: [PATCH] chore(deps): bump ahp from 0.1.0 to 0.3.0 in /cli Bumps [ahp](https://github.com/microsoft/agent-host-protocol) from 0.1.0 to 0.3.0. - [Release notes](https://github.com/microsoft/agent-host-protocol/releases) - [Changelog](https://github.com/microsoft/agent-host-protocol/blob/main/CHANGELOG.md) - [Commits](https://github.com/microsoft/agent-host-protocol/compare/rust/v0.1.0...v0.3.0) --- updated-dependencies: - dependency-name: ahp dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- cli/Cargo.lock | 33 +++++++++++++++++++++++++++++---- cli/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/cli/Cargo.lock b/cli/Cargo.lock index 3c4abdcd..223dd829 100644 --- a/cli/Cargo.lock +++ b/cli/Cargo.lock @@ -23,7 +23,21 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8c974ae2da70e455e9e72de59ccc5279afc660ce267ab994474734d3310401f0" dependencies = [ - "ahp-types", + "ahp-types 0.1.0", + "serde", + "serde_json", + "thiserror 2.0.18", + "tokio", + "tracing", +] + +[[package]] +name = "ahp" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ff1c5fceb94cf9e8a852eb84dd7f835827a7a2a07b8c23916d192075345e0ea" +dependencies = [ + "ahp-types 0.3.0", "serde", "serde_json", "thiserror 2.0.18", @@ -42,13 +56,24 @@ dependencies = [ "serde_repr", ] +[[package]] +name = "ahp-types" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b556a5958c99e73aee87d8e638baf648bc902ff0dabc00393522f8e6e88830b2" +dependencies = [ + "serde", + "serde_json", + "serde_repr", +] + [[package]] name = "ahp-ws" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "516267592f4f77df2cecb21b4945ae6eb5a7cf2b2d07062e6423fa2e56a1caa6" dependencies = [ - "ahp", + "ahp 0.1.0", "futures-util", "serde_json", "thiserror 2.0.18", @@ -4341,8 +4366,8 @@ dependencies = [ name = "zeus-cli" version = "0.1.0" dependencies = [ - "ahp", - "ahp-types", + "ahp 0.3.0", + "ahp-types 0.1.0", "ahp-ws", "base64", "bytes", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 4c8f0852..aa22fbf8 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -56,7 +56,7 @@ console = "0.16.3" bytes = "1.11.1" tar = "0.4.45" local-ip-address = "0.6" -ahp = "0.1" +ahp = "0.3" ahp-types = "0.1" ahp-ws = "0.1"