From a5a97962e21228d42a6f6016c7a18a62ad921402 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Sep 2026 14:05:13 +0000 Subject: [PATCH 1/2] chore(deps): bump actions-rust-lang/setup-rust-toolchain Bumps [actions-rust-lang/setup-rust-toolchain](https://github.com/actions-rust-lang/setup-rust-toolchain) from 1.17.0 to 2.0.0. - [Release notes](https://github.com/actions-rust-lang/setup-rust-toolchain/releases) - [Changelog](https://github.com/actions-rust-lang/setup-rust-toolchain/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions-rust-lang/setup-rust-toolchain/compare/166cdcfd11aee3cb47222f9ddb555ce30ddb9659...ecabd13d1c56bd1345c230e542e9144811ad706f) --- updated-dependencies: - dependency-name: actions-rust-lang/setup-rust-toolchain dependency-version: 2.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c374f4d4f..6ffb35ab3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,7 +33,7 @@ jobs: echo "version=$msrv" >> "$GITHUB_OUTPUT" - name: Setup Rust - uses: actions-rust-lang/setup-rust-toolchain@166cdcfd11aee3cb47222f9ddb555ce30ddb9659 + uses: actions-rust-lang/setup-rust-toolchain@ecabd13d1c56bd1345c230e542e9144811ad706f with: toolchain: ${{ steps.msrv.outputs.version }} @@ -55,7 +55,7 @@ jobs: cache: "npm" - name: Setup Rust - uses: actions-rust-lang/setup-rust-toolchain@166cdcfd11aee3cb47222f9ddb555ce30ddb9659 + uses: actions-rust-lang/setup-rust-toolchain@ecabd13d1c56bd1345c230e542e9144811ad706f with: toolchain: nightly,stable components: rustfmt,clippy @@ -144,7 +144,7 @@ jobs: persist-credentials: false - name: Setup Rust - uses: actions-rust-lang/setup-rust-toolchain@166cdcfd11aee3cb47222f9ddb555ce30ddb9659 + uses: actions-rust-lang/setup-rust-toolchain@ecabd13d1c56bd1345c230e542e9144811ad706f with: toolchain: stable From 1c24ea908448d7acae35d15995b911d95c87278b Mon Sep 17 00:00:00 2001 From: Ben Brandt Date: Mon, 14 Sep 2026 16:21:46 +0200 Subject: [PATCH 2/2] chore: resolve Cargo manifest warnings --- Cargo.toml | 2 +- agent-client-protocol-schema/Cargo.toml | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 758fa66f4..4bd668a98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ agent-client-protocol-schema = { path = "agent-client-protocol-schema", version [workspace.lints.rust] future_incompatible = { level = "warn", priority = -1 } -let-underscore = "warn" +let_underscore = "warn" missing_debug_implementations = "warn" missing_docs = "warn" nonstandard_style = { level = "warn", priority = -1 } diff --git a/agent-client-protocol-schema/Cargo.toml b/agent-client-protocol-schema/Cargo.toml index c900c0624..6d1b2c387 100644 --- a/agent-client-protocol-schema/Cargo.toml +++ b/agent-client-protocol-schema/Cargo.toml @@ -6,7 +6,6 @@ edition = "2024" license = "Apache-2.0" description = "A protocol for standardizing communication between code editors and AI coding agents" repository = "https://github.com/agentclientprotocol/agent-client-protocol" -homepage = "https://github.com/agentclientprotocol/agent-client-protocol" documentation = "https://docs.rs/agent-client-protocol-schema" readme = "../README.md" keywords = ["agent", "client", "protocol", "ai", "editor"]