chore: update dependencies and cleanup Cargo.toml files#7
Merged
Conversation
Update all dependencies to latest versions: - wasmtime: 38.0 → 39.0 (major) - blake3: 1.5 → 1.8.2 - clap: 4.5 → 4.5.53 - thiserror: 2.0 → 2.0.17 - anyhow: 1.0 → 1.0.100 - serde: 1.0 → 1.0.228 - handlebars: 6.3 → 6.3.2 - lru: 0.16 → 0.16.2 - reqwest: 0.12 → 0.12.24 Cleanup Cargo.toml structure: - Remove all comments for cleaner configuration - Alphabetize all dependencies for better maintainability - Move features from workspace to individual crates - Standardize formatting across all files All 696 tests pass with updated dependencies.
Update official Rust SDK for Model Context Protocol from 0.8 to 0.9.0. All 696 tests passing with the updated version.
Add criterion to dev-dependencies for crates with benchmark targets: - mcp-bridge (cache_benchmark.rs) - mcp-introspector (serialization_benchmark.rs) - mcp-codegen (code_generation.rs) This fixes clippy errors when running with --all-targets flag.
Codecov Report✅ All modified and coverable lines are covered by tests. @@ Coverage Diff @@
## master #7 +/- ##
=======================================
Coverage 91.89% 91.89%
=======================================
Files 29 29
Lines 4762 4762
=======================================
Hits 4376 4376
Misses 386 386
Flags with carried forward coverage won't be shown. Click here to find out more. Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
Update Minimum Supported Rust Version to 1.89 due to wasmtime 39.0.0 requirements. All wasmtime 39.0 dependencies (cranelift-*, pulley-*, wasmtime-*) require rustc 1.89.0. Changes: - Update workspace rust-version in Cargo.toml - Update MSRV badge in README.md - Update CI workflow to test with Rust 1.89 Verified with cargo-msrv: compatible with 1.89.0.
Update to latest versions: - regex: 1.11 → 1.12.2 - uuid: 1.11 → 1.18.1 - wat: 1.240 → 1.241.2 All 696 tests passing with updated versions.
Add new bench-fast profile optimized for CI and development: - codegen-units = 16 (parallel compilation vs sequential) - lto = false (skip link-time optimization) - debug = false (skip debug symbols) - incremental = false (better sccache compatibility) Performance results: - bench-fast: 1m 45s (new, for CI/development) - bench: 4m 42s (default, for profiling with flamegraph) - Speedup: 63% faster builds (177s saved) Also update bench profile with incremental = false for better sccache compatibility (improves Rust cache hits from 42% to 55-65%). CI updated to use bench-fast profile for faster workflow runs. Usage: cargo bench --no-run --profile bench-fast # Fast iteration cargo bench --no-run # Accurate profiling
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.
Summary
Dependency Updates
Cargo.toml Cleanup
Impact
Test Plan