chore(deps): bump axum-server 0.7 → 0.8 — closes #192#232
Merged
Conversation
axum-server 0.8 drops the unmaintained rustls-pemfile dependency (RUSTSEC-2025-0134) and switches to rustls-pki-types directly. Breaking change handled: Handle is now generic over A: Address. The daemon binds TCP so the type parameter is std::net::SocketAddr (internally aliased as IpSocketAddr in axum-server's source). Verification on dev box: - cargo check --workspace: clean - cargo fmt --check: clean - cargo clippy --workspace --all-targets -D warnings: clean - cargo test -p forkd-controller --lib: 66/66 pass - cargo audit: 0 advisories (rustls-pemfile gone from the lockfile) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Bumps
axum-serverfrom 0.7 → 0.8 to drop the unmaintainedrustls-pemfiledependency flagged by RUSTSEC-2025-0134 (issue #192). The 0.8 release switched torustls-pki-typesdirectly, eliminating the advisory from our tree.Breaking change handled
axum-server 0.8 made
Handlegeneric overA: Address. Since the controller binds TCP, the type parameter isstd::net::SocketAddr(axum-server's source aliases this internally asIpSocketAddr). Only one call site needed the explicit annotation:let handle = Handle::new();infers the type from the subsequentbind()/bind_rustls()call.Verification (dev box)
cargo check --workspacecargo fmt --all -- --checkcargo clippy --workspace --all-targets -- -D warningscargo test -p forkd-controller --lib→ 66/66 passcargo audit→ 0 advisories;rustls-pemfileremoved fromCargo.lockTest plan
forkd daemon --tls-cert ... --tls-key ...accepts a connection and gracefully shuts down on SIGTERMCloses #192.
🤖 Generated with Claude Code