Skip to content

Bump the cargo-major group across 1 directory with 5 updates - #23

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-major-a8de3ef3b1
Closed

Bump the cargo-major group across 1 directory with 5 updates#23
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/cargo-major-a8de3ef3b1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on pollster, skia-safe, x11rb, rmcp and base64 to permit the latest version.
Updates pollster to 1.0.1

Changelog

Sourced from pollster's changelog.

[1.0.1] - 2026-07-10

Fixed

  • Use doc_cfg instead of doc_auto_cfg for docsrs builds

[1.0.0] - 2026-07-09

Changed

  • FutureExt is now implemented for IntoFuture, not just Future

[0.4.0] - 2024-10-26

Added

  • MSRV policy

Removed

  • All unsafe code

Changed

  • Updated MSRV to 1.69
  • block_on now accepts IntoFuture instead of Future (this is a backward-compatible change)

[0.3.0] - 2023-02-07

Added

  • pollster::main and pollster::test procedural macros, akin to tokio::main and tokio::test

Changed

  • Improved performance by removing unnecessary allocation
Commits

Updates skia-safe to 0.99.0

Release notes

Sourced from skia-safe's releases.

0.99.0

This release aligns the Rust bindings to Skia's milestone 150 in #1284 and #1293 (Release Notes):

What's Changed

New Contributors

Full Changelog: rust-skia/rust-skia@0.97.2...0.99.0

Commits
  • a25a0fd Merge pull request #1300 from pragmatrix/edition-2024
  • 25de0c4 edition-2024: D3D clippy fixes
  • bc2908a fmt
  • 6f08e61 edition-2024: Fix bindgen unsafe_op_in_unsafe_fn warnings
  • c323518 Port to Rust Edition 2024
  • 2ecb1df Merge pull request #1293 from pragmatrix/m150
  • 5e31d6a m150: Bump version
  • 7397144 m150: Update Skia
  • 85caeac m150: No invalid StrikRefs in Rust
  • 2dc0787 m150: Fix IDE errors in bindings.cpp on macOS
  • Additional commits viewable in compare view

Updates x11rb to 0.14.0

Changelog

Sourced from x11rb's changelog.

Version 0.14.0 (2026-07-16)

New features:

  • Allow building with libloading 0.9.

Fixes:

  • Fix CUT_BUFFER0 to CUT_BUFFER7 atom names. The generated code previously used CUT_BUFFE_R0.

Breaking changes:

  • Drop abstract unix socket support, following a change in libxcb.
  • MSRV increased to Rust 1.68.
  • Update to raw-window-handle 0.6.

Minor changes:

  • Pin various dependencies in CI to keep the MSRV check working.
  • Fix various new clippy and Rust warnings.

Version 0.13.2 (2025-08-29)

New features:

  • Update cursor icon file search path to follow a change in libxcb-cursor which in turn was changed to follow libXcursor.
  • Get cursor theme name from $XCURSOR_THEME if set.
  • Added XCBConnection::from_existing_connection to allow wrapping anything that implements AsRawXcbConection. Without this function, unsafe code was required from the user.
  • Added raw-window-handle feature which makes XCBConnection implement HasRawDisplayHandle and WindowWrapper implement HasRawWindowHandle.
  • Use new hints.mostly-unused Cargo feature. This might improve compilation speed with nightly compilers.

Fixes:

  • Fix missing indentation in doc comments in generated code.
  • Fix a minor X11 resource leak in cursor code.
  • Gate tests behind the features they need so that cargo test --no-default-features works. This is now also tested in CI.
  • The present feature depends on dri3 to actually work, but this was not specified in Cargo.toml.

Breaking changes:

  • MSRV increased to Rust 1.64.

Minor changes:

  • Various minor changes to fix new compiler and clippy warnings and improve readability.
  • Use existing xcursor-rs crate for cursor and cursor theme file parsing instead of own code.
  • Updated dependencies to rustix 1.0, gethostname 1.0. This required a MSRV increase to Rust 1.64.

... (truncated)

Commits
  • 6dedac4 Update the version number for the next release
  • 29c5bd1 Merge pull request #978 from psychon/uli/update-changelog
  • 222fdc0 Update the changelog for the next release
  • 29b0d64 Merge pull request #976 from psychon/update-libloading
  • d7981c5 Allow using libloading 0.9.0
  • ad66840 Merge pull request #977 from psychon/fix-clippy
  • c9fa1fe xtrace-example: Fix a new clippy warning
  • 213a633 Merge pull request #975 from psychon/fix-msrv-check-removing-syn-v2
  • 94e7f1a Fix syn v2 pinning in msrv workflow
  • 4cd9f24 Merge pull request #974 from psychon/fix-cut-buffer0
  • Additional commits viewable in compare view

Updates rmcp to 2.2.0

Release notes

Sourced from rmcp's releases.

rmcp-macros-v2.2.0

Added

  • [breaking] align model types with MCP 2025-11-25 spec (#927)

Fixed

  • fill missing fully qualified syntax in prompt_handler macros (#866)

Other

  • align README examples with v2 model API (#928)
Commits
  • 5195776 chore: release v2.2.0 (#953)
  • 6dd7b85 chore(deps): update p256 requirement from 0.13 to 0.14 (#959)
  • a037935 fix: pass client conformance suite (#960)
  • dbda50c fix: don't respond to cancelled requests (#957)
  • 45f2f72 fix: fail orphaned streamable HTTP responses on reinit (#914)
  • 95490fa feat: reject auth servers lacking S256 PKCE support (#955)
  • bdf0c32 fix: address 2025-11-25 conformance audit findings (#951)
  • 8e44af4 chore: release v2.1.0 (#950)
  • 4833ec7 fix(transport): make AsyncRwTransport::receive cancel-safe (#941) (#947)
  • 5837e22 fix(auth): preserve refresh_token when refresh response omits it (#949)
  • Additional commits viewable in compare view

Updates base64 to 0.23.0

Changelog

Sourced from base64's changelog.

0.23.0

  • Added more consts for preconfigured configs and engines
  • Make DecodeError::InvalidLastSymbol more clear by including the decoded value
  • Added SIMD-accelerated engines behind the default-on simd-unsafe feature: Simd picks the best instruction set at runtime (AVX2 on x86_64, NEON on aarch64) and falls back to the scalar GeneralPurpose engine, while Avx2 and Neon target one instruction set with no runtime detection and work in no_std. The engines support the standard and URL-safe alphabets.
  • Update MSRV to 1.71.0
  • Add support for custom padding symbols

0.22.1

  • Correct the symbols used for the predefined alphabet::BIN_HEX.

0.22.0

  • DecodeSliceError::OutputSliceTooSmall is now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning that Engine::decode_slice can now be used with exactly-sized output slices. As part of this, Engine::internal_decode now returns DecodeSliceError instead of DecodeError, but that is not expected to affect any external callers.
  • DecodeError::InvalidLength now refers specifically to the number of valid symbols being invalid (i.e. len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for either InvalidLength or InvalidByte being appropriate.
  • Decoding is somewhat faster (5-10%)

0.21.7

  • Support getting an alphabet's contents as a str via Alphabet::as_str()

0.21.6

  • Improved introductory documentation and example

0.21.5

  • Add Debug and Clone impls for the general purpose Engine

0.21.4

  • Make encoded_len const, allowing the creation of arrays sized to encode compile-time-known data lengths

0.21.3

  • Implement source instead of cause on Error types
  • Roll back MSRV to 1.48.0 so Debian can continue to live in a time warp
  • Slightly faster chunked encoding for short inputs
  • Decrease binary size

0.21.2

  • Rollback MSRV to 1.57.0 -- only dev dependencies need 1.60, not the main code

0.21.1

... (truncated)

Commits
  • 9e9220a v0.23.0
  • 870326e Merge pull request #306 from marshallpierce/mp/trailing-bits-docs
  • fbec5f1 Document no trailing trailing bits
  • 0a23549 Merge pull request #305 from marshallpierce/mp/edition-2021
  • f10b7e2 Update deps & edition
  • 9d21a59 Merge pull request #304 from marshallpierce/mp/custom-padding-rebase
  • f70bad2 Support custom padding symbols
  • 684d79c Merge pull request #301 from marshallpierce/mp/simd-gardening
  • 5bf66f2 Merge pull request #284 from AbeZbm/add-tests
  • d3831cf Followups to SIMD work
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Updates the requirements on [pollster](https://github.com/zesterer/pollster), [skia-safe](https://github.com/rust-skia/rust-skia), [x11rb](https://github.com/psychon/x11rb), [rmcp](https://github.com/modelcontextprotocol/rust-sdk) and [base64](https://github.com/marshallpierce/rust-base64) to permit the latest version.

Updates `pollster` to 1.0.1
- [Changelog](https://github.com/zesterer/pollster/blob/master/CHANGELOG.md)
- [Commits](https://github.com/zesterer/pollster/commits)

Updates `skia-safe` to 0.99.0
- [Release notes](https://github.com/rust-skia/rust-skia/releases)
- [Commits](rust-skia/rust-skia@0.97.0...0.99.0)

Updates `x11rb` to 0.14.0
- [Changelog](https://github.com/psychon/x11rb/blob/master/doc/changelog.md)
- [Commits](psychon/x11rb@v0.13.0...v0.14.0)

Updates `rmcp` to 2.2.0
- [Release notes](https://github.com/modelcontextprotocol/rust-sdk/releases)
- [Changelog](https://github.com/modelcontextprotocol/rust-sdk/blob/main/release-plz.toml)
- [Commits](modelcontextprotocol/rust-sdk@rmcp-v1.7.0...rmcp-v2.2.0)

Updates `base64` to 0.23.0
- [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md)
- [Commits](marshallpierce/rust-base64@v0.22.0...v0.23.0)

---
updated-dependencies:
- dependency-name: pollster
  dependency-version: 1.0.1
  dependency-type: direct:production
  dependency-group: cargo-major
- dependency-name: skia-safe
  dependency-version: 0.99.0
  dependency-type: direct:production
  dependency-group: cargo-major
- dependency-name: x11rb
  dependency-version: 0.14.0
  dependency-type: direct:production
  dependency-group: cargo-major
- dependency-name: rmcp
  dependency-version: 2.2.0
  dependency-type: direct:production
  dependency-group: cargo-major
- dependency-name: base64
  dependency-version: 0.23.0
  dependency-type: direct:production
  dependency-group: cargo-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 27, 2026
miniscreenshot = { version = "0.3", path = "../miniscreenshot" }

rmcp = { version = "1.7", default-features = false, features = [
rmcp = { version = "2.2", default-features = false, features = [

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WARNING: rmcp 2.2 introduces breaking model type changes

The rmcp 2.2.0 release explicitly lists a breaking change: "align model types with MCP 2025-11-25 spec". The miniscreenshot-mcp crate imports extensively from rmcp::model::*, uses rmcp::handler::server::* traits and macros (tool, tool_handler, tool_router), and relies on ServerHandler, Service<RoleServer>, and ErrorData types that may have changed. Verify that the crate compiles and all MCP tool behaviors remain correct before merging.


Reply with @kilocode-bot fix it to have Kilo Code address this issue.

@kilo-code-bot

kilo-code-bot Bot commented Jul 27, 2026

Copy link
Copy Markdown

Code Review Summary

Status: 1 Issue Found | Recommendation: Address before merge

Overview

Severity Count
CRITICAL 0
WARNING 1
SUGGESTION 0
Issue Details (click to expand)

WARNING

File Line Issue
miniscreenshot-mcp/Cargo.toml 16 rmcp 2.2 introduces breaking model type changes that may break compilation
Files Reviewed (5 files)
  • miniscreenshot-mcp/Cargo.toml - 1 issue
  • miniscreenshot-skia/Cargo.toml - 0 issues
  • miniscreenshot-vello/Cargo.toml - 0 issues
  • miniscreenshot-wgpu/Cargo.toml - 0 issues
  • miniscreenshot-x11/Cargo.toml - 0 issues

Fix these issues in Kilo Cloud


Reviewed by kimi-k2.6 · Input: 100.9K · Output: 11.3K · Cached: 1.2M

@dependabot @github

dependabot Bot commented on behalf of github Aug 24, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Aug 24, 2026
@dependabot
dependabot Bot deleted the dependabot/cargo/cargo-major-a8de3ef3b1 branch August 24, 2026 04:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants