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.
This PR just updates a few crates that were out of date.
List of out-of-date crates:
axum-test
(dev dependency)idna
(actually used but not in the public interface)owo-colors
(dev dependency)It also (begrudgingly) updates a UI test because the newest stable changes the order of the types yet again.
The
idna
update also uses the newdomain_to_ascii_cow
API, meaning no allocations if the domain is already in its ASCII representation.It also uses the
AsciiDenyList::URL
as recomended by theidna
docs. Not sure if this potentially breaks something for people? I guess this is a case of "test by scream", they'll complain if something breaks.