deps: modernize crates (schemars 1, thiserror 2, which 8, notify 8, nix 0.31)#11
Merged
Conversation
added 5 commits
June 22, 2026 02:50
rmcp 0.16 already requires schemars ^1.0 for its #[tool]/JsonSchema macros, so the workspace's schemars=0.8 declaration was pulling a second, redundant schemars 0.8.22 into the tree. We have no direct schemars usage (tools use free-form serde_json maps), so bumping the declaration to 1 simply removes the duplicate and leaves a single schemars 1.2.1 shared with rmcp. cargo check + 6 tests green.
There was a problem hiding this comment.
Pull request overview
Modernizes the workspace’s Rust dependencies to newer major versions, primarily to align schemars with rmcp’s already-required schemars 1.x and to refresh the overall dependency tree.
Changes:
- Bumped workspace dependencies:
schemars0.8→1,thiserror1→2,which6→8,notify6→8,nix0.29→0.31. - Refreshed
Cargo.lockvia in-majorcargo updateacross the workspace.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| Cargo.toml | Updates workspace dependency versions for schemars/thiserror/which/notify/nix. |
| Cargo.lock | Regenerates the resolved dependency graph to match the updated requirements. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Dependency modernization.
cargo check --workspace+cargo test(6 passed) green.cargo updateacross the workspaceHeld: rmcp 0.16→1.7 — major API/macro rework of the server foundation; deferred to a dedicated effort (rmcp 1.7 still uses schemars 1.x, so this PR is forward-compatible).
🤖 Generated with Claude Code