-
Notifications
You must be signed in to change notification settings - Fork 12.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rollup of 5 pull requests #68181
Rollup of 5 pull requests #68181
Conversation
This is primarily updating the `curl` dependency, but also went ahead and applied a few updates for other packages that Cargo depends on.
…meGomez rustdoc: Don't allow `#![feature(...)]` on stable or beta Fixes rust-lang#67647 r? @GuillaumeGomez
…rk-Simulacrum Update some of Cargo's dependencies This is primarily updating the `curl` dependency, but also went ahead and applied a few updates for other packages that Cargo depends on.
libterm: parse extended terminfo format Fixes rust-lang#45728. Modifies libterm to parse the extended terminfo format introduced in ncurses 6.1. This fixes the lack of color in test output for users with newer ncurses versions. The ideal fix for this would be to migrate libtest to use `termcolor` (rust-lang#60349), but that's blocked for the foreseeable future.
…ifetime, r=petrochenkov Forbid elided lifetimes within const generic parameter types Disallows `fn foo<const T: &u32>()`, the lifetime must be explicitly given, i.e. `fn foo<const T: &'static u32>()`. Fixes rust-lang#67883
…laumeGomez rustdoc: HTML escape arrows on help popup r? @GuillaumeGomez
@bors r+ rollup=never p=5 |
📌 Commit 3163146 has been approved by |
⌛ Testing commit 3163146 with merge aa0ff2027749d2c5977a3e36991633392176c33e... |
The job Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
💔 Test failed - checks-azure |
I left a comment on PR that seems to be the cause of the failure, closing. |
Successful merges:
#![feature(...)]
on stable or beta #67989 (rustdoc: Don't allow#![feature(...)]
on stable or beta)Failed merges:
r? @ghost