Major-version update cargo dependencies#4615
Open
tautschnig wants to merge 2 commits into
Open
Conversation
Updates as suggested by `cargo outdated --workspace`.
Contributor
There was a problem hiding this comment.
Pull request overview
Updates several workspace crates to newer major/minor dependency versions (per cargo outdated --workspace) and applies a small code change to keep kani-driver compatible with updated time formatting APIs.
Changes:
- Bump multiple dependencies across tools and core crates (e.g.,
strum0.28,toml1.x,tree-sitter0.26,itertools0.15,string-interner0.20). - Update
kani-drivertimestamp format parsing to usetime::format_description::parse_borrowed. - Refresh
Cargo.lockto reflect the new resolved dependency graph.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| tools/scanner/Cargo.toml | Updates strum / strum_macros to 0.28 for the scanner tool. |
| tools/kani-cov/Cargo.toml | Updates tree-sitter to 0.26 for coverage parsing. |
| library/kani_macros/Cargo.toml | Updates strum / strum_macros to 0.28, but also comments out a required dependency (needs fix). |
| kani-driver/src/main.rs | Adjusts timestamp format parsing API usage for the updated time crate. |
| kani-driver/Cargo.toml | Updates toml dependency to 1.x. |
| kani-compiler/Cargo.toml | Updates itertools and strum/strum_macros. |
| kani_metadata/Cargo.toml | Updates strum / strum_macros. |
| cprover_bindings/Cargo.toml | Updates string-interner to 0.20. |
| Cargo.lock | Locks updated dependency versions after the bumps. |
💡 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.
Updates as suggested by
cargo outdated --workspace.By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.