chore: update dependencies#181
Merged
Merged
Conversation
Resolve dependency CVEs and refresh outdated crates. Security fixes: - lettre 0.11.19 -> 0.11.22 (RUSTSEC-2026-0141: inverted-boolean bug disabling TLS hostname verification on the boring-tls backend) - rand 0.10.0 -> 0.10.1 (RUSTSEC-2026-0097: aliased mutable reference / UB when a custom log logger calls rand::rng() during reseeding) minor/patch bumps: - tokio 1.48.0 -> 1.52.3 - uuid 1.18.1 -> 1.23.4 - reqwest 0.13.0 -> 0.13.4 - serde_json 1.0.145 -> 1.0.150 - chrono 0.4.42 -> 0.4.45 - log 0.4.28 -> 0.4.33 - url 2.5.7 -> 2.5.8 - tokio-util 0.7.17 -> 0.7.18 major bump: - minreq 2.14.1 -> 3.0.0: renamed the https-native feature to https-native-tls (3.0 feature rename); call site in rocket() uses only get/with_timeout/send/json which are unchanged. cargo audit reports no vulnerabilities. cargo fmt/clippy/test all pass (127 tests). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
rubenhensen
approved these changes
Jul 2, 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.
Resolves the dependency updates tracked in the dep-scan issue.
Security fixes (CVEs)
Both CVEs from the issue were still present in
main'sCargo.tomlconstraints and are now resolved:boring-tlsbackend. This project does not enableboring-tls; upgraded as a precaution.loglogger callsrand::rng()during reseeding.Minor / patch bumps
Major bump
https-native→https-native-tls(updated inCargo.toml). The single call site inrocket()usesget/with_timeout/send/json, whose signatures are unchanged in 3.0. Builds and runs unchanged.Verification
cargo fmt --all -- --check— cleancargo clippy --all-targets -- -D warnings— cleancargo test --all-targets— 127 passed, 0 failedcargo audit— no vulnerabilities. One informationalunmaintainedwarning remains forrustls-pemfile(RUSTSEC-2025-0134), pulled transitively viairma → reqwest 0.11.27; not fixable without an upstreamirmarelease and out of scope for this issue.Closes #180