Consolidate Dependabot bumps: file-rotate, service-manager, sha2, reqwest, plotly, sysinfo#311
Merged
daniel-thom merged 2 commits intomainfrom May 10, 2026
Merged
Conversation
…west, plotly, sysinfo Bundles six pending Dependabot PRs (#136, #158, #161, #180, #253, #255) into a single branch and resolves the breakage each one introduced. - file-rotate 0.7 -> 0.8: drop-in - service-manager 0.7 -> 0.11: add new `restart_policy` field on `ServiceInstallCtx` - sha2 0.10 -> 0.11: `finalize()` now returns `hybrid_array::Array`, which no longer implements `LowerHex`; replace `format!("{:x}", ...)` sites with `hex::encode(...)` and add `hex` as a workspace dep gated under the existing server/client features - reqwest 0.12 -> 0.13: `RequestBuilder::query` is now feature-gated; add the `query` feature to the workspace dep - plotly 0.10 -> 0.14: pin transitive `crc` to 3.3 to satisfy `lzma-rust2`'s `<=3.3` constraint (sqlx-core's `^3` was resolving to 3.4) - sysinfo 0.29 -> 0.38: API overhaul -- `RefreshKind::new` -> `nothing`, `with_memory()` takes `MemoryRefreshKind`, the `*Ext` traits are gone, `refresh_cpu` -> `refresh_cpu_all`, `global_cpu_info().cpu_usage()` -> `global_cpu_usage()`, `refresh_processes()` now requires `ProcessesToUpdate::All` + `remove_dead_processes` flag
In file-rotate 0.7 the trailing mode arg was unix-only; in 0.8 it became `Option<OpenOptions>` required on all platforms, so Windows builds hit "this function takes 5 arguments but 4 arguments were supplied".
This was referenced May 10, 2026
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
Bundles six pending Dependabot PRs into one branch and fixes the breakage each one introduced.
Supersedes:
Per-bump notes
restart_policyfield onServiceInstallCtx.Digest::finalize()now returnshybrid_array::Array<u8, _>, which no longer implementsLowerHex. Allformat!("{:x}", ...)sites switched tohex::encode(...);hexadded as a workspace dep gated under the existing server/client features.RequestBuilder::queryis now behind the optionalqueryfeature; added it to the workspace dep.plotly_kaleidopulls inlzma-rust2 0.15which requirescrc <= 3.3, butsqlx-coreresolvescrcto 3.4. Pinned transitivecrcto 3.3.0 inCargo.lock.RefreshKind::new→nothing;with_memory()now takesMemoryRefreshKind; theSystemExt/CpuExt/ProcessExttraits are gone (methods are inherent);refresh_cpu→refresh_cpu_all;global_cpu_info().cpu_usage()→global_cpu_usage();refresh_processes()now requiresProcessesToUpdate::All+ aremove_dead_processes: boolflag.Test plan
cargo fmt -- --checkcargo clippy --all --all-targets --all-features -- -D warningsdprint checkcargo build --all-featurescargo build --release --bin torccargo build --release --features server-bin --bin torc-servercargo build --release --features dash --bin torc-dashcargo build --release --features mcp-server --bin torc-mcp-servercargo build --release --features slurm-runner --bin torc-slurm-job-runnercargo test --lib --all-features— 400 passed🤖 Generated with Claude Code