From affbc8ff16cf8a5548801935fbd4f097987fb7d7 Mon Sep 17 00:00:00 2001 From: Ben Brandt Date: Thu, 19 Mar 2026 15:02:25 +0100 Subject: [PATCH] feat(schema): Update schema to 0.11.3 --- Cargo.lock | 26 +++++++++++++------------- Cargo.toml | 2 +- src/agent-client-protocol/Cargo.toml | 4 ++++ 3 files changed, 18 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index def19cf..1fcd0ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,9 +26,9 @@ dependencies = [ [[package]] name = "agent-client-protocol-schema" -version = "0.11.2" +version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0497b9a95a404e35799904835c57c6f8c69b9d08ccfd3cb5b7d746425cd6789" +checksum = "96daddd0d00f2eab88f8099d38190881bf8d6c5e46b6fa21751f482775d0dba7" dependencies = [ "anyhow", "derive_more", @@ -64,9 +64,9 @@ dependencies = [ [[package]] name = "anstyle" -version = "1.0.13" +version = "1.0.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" [[package]] name = "anstyle-parse" @@ -167,9 +167,9 @@ dependencies = [ [[package]] name = "colorchoice" -version = "1.0.4" +version = "1.0.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" [[package]] name = "concurrent-queue" @@ -454,9 +454,9 @@ dependencies = [ [[package]] name = "libc" -version = "0.2.182" +version = "0.2.183" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" +checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d" [[package]] name = "linux-raw-sys" @@ -577,9 +577,9 @@ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49" [[package]] name = "portable-atomic-util" -version = "0.2.5" +version = "0.2.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5" +checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3" dependencies = [ "portable-atomic", ] @@ -839,12 +839,12 @@ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" [[package]] name = "socket2" -version = "0.6.2" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" dependencies = [ "libc", - "windows-sys 0.60.2", + "windows-sys 0.61.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index fb8f812..15757bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ tokio = { version = "1.48", features = ["full"] } tokio-util = { version = "0.7", features = ["compat"] } # Protocol -agent-client-protocol-schema = { version = "=0.11.2" } +agent-client-protocol-schema = { version = "=0.11.3" } # Serialization serde = { version = "1.0", features = ["derive", "rc"] } diff --git a/src/agent-client-protocol/Cargo.toml b/src/agent-client-protocol/Cargo.toml index 42394cc..b431641 100644 --- a/src/agent-client-protocol/Cargo.toml +++ b/src/agent-client-protocol/Cargo.toml @@ -16,6 +16,8 @@ categories = ["development-tools", "api-bindings"] unstable = [ "unstable_auth_methods", "unstable_cancel_request", + "unstable_elicitation", + "unstable_logout", "unstable_session_fork", "unstable_session_close", "unstable_session_model", @@ -26,6 +28,8 @@ unstable = [ ] unstable_auth_methods = ["agent-client-protocol-schema/unstable_auth_methods"] unstable_cancel_request = ["agent-client-protocol-schema/unstable_cancel_request"] +unstable_elicitation = ["agent-client-protocol-schema/unstable_elicitation"] +unstable_logout = ["agent-client-protocol-schema/unstable_logout"] unstable_session_fork = ["agent-client-protocol-schema/unstable_session_fork"] unstable_session_model = ["agent-client-protocol-schema/unstable_session_model"] unstable_session_resume = ["agent-client-protocol-schema/unstable_session_resume"]