-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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 #118821
Rollup of 5 pull requests #118821
Commits on Dec 8, 2023
-
Add unstable
-Zdefault-hidden-visibility
cmdline flag forrustc
.The new flag has been described in the Major Change Proposal at rust-lang/compiler-team#656
Configuration menu - View commit details
-
Copy full SHA for 5795925 - Browse repository at this point
Copy the full SHA 5795925View commit details -
Skipping the new
default-hidden-visibility.rs
test for WASM targets.The test expectations don't apply to WASM, where the target spec has a different default value of `default_hidden_visibility`. See the test comments for more details.
Configuration menu - View commit details
-
Copy full SHA for eb8478a - Browse repository at this point
Copy the full SHA eb8478aView commit details
Commits on Dec 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for f635cd2 - Browse repository at this point
Copy the full SHA f635cd2View commit details -
Configuration menu - View commit details
-
Copy full SHA for e03c18b - Browse repository at this point
Copy the full SHA e03c18bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f457d9 - Browse repository at this point
Copy the full SHA 2f457d9View commit details -
Revert "Don't print host effect param in pretty path_generic_args"
This reverts commit f1bf874.
Configuration menu - View commit details
-
Copy full SHA for d1f4bc5 - Browse repository at this point
Copy the full SHA d1f4bc5View commit details -
Configuration menu - View commit details
-
Copy full SHA for d464dd0 - Browse repository at this point
Copy the full SHA d464dd0View commit details -
Configuration menu - View commit details
-
Copy full SHA for de8f4ac - Browse repository at this point
Copy the full SHA de8f4acView commit details -
Configuration menu - View commit details
-
Copy full SHA for c4c3555 - Browse repository at this point
Copy the full SHA c4c3555View commit details -
Configuration menu - View commit details
-
Copy full SHA for f481596 - Browse repository at this point
Copy the full SHA f481596View commit details -
Remove an allocation in min_stack
Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for af8dfde - Browse repository at this point
Copy the full SHA af8dfdeView commit details -
rustdoc-search: do not treat associated type names as types
Before: http://notriddle.com/rustdoc-html-demo-6/tor-before/tor_config/ After: http://notriddle.com/rustdoc-html-demo-6/tor-after/tor_config/ Profile: http://notriddle.com/rustdoc-html-demo-6/tor-profile/ As a bit of background information: in type-based queries, a type name that does not exist gets treated as a generic type variable. This causes a counterintuitive behavior in the `tor_config` crate, which has a trait with an associated type variable called `T`. This isn't a searchable concrete type, but its name still gets stored in the typeNameIdMap, as a convenient way to intern its name.
Configuration menu - View commit details
-
Copy full SHA for 92b84f8 - Browse repository at this point
Copy the full SHA 92b84f8View commit details
Commits on Dec 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 7162cb9 - Browse repository at this point
Copy the full SHA 7162cb9View commit details -
Rollup merge of rust-lang#118417 - anforowicz:default-hidden-visibili…
…ty, r=TaKO8Ki Add unstable `-Zdefault-hidden-visibility` cmdline flag for `rustc`. The new flag has been described in the Major Change Proposal at rust-lang/compiler-team#656
Configuration menu - View commit details
-
Copy full SHA for 0688d0e - Browse repository at this point
Copy the full SHA 0688d0eView commit details -
Rollup merge of rust-lang#118661 - fee1-dead-contrib:restore-const-pa…
…rtialEq, r=compiler-errors Restore `const PartialEq` And thus fixes a number of tests. There is a bug that still needs to be fixed, so WIP for now. r? ``@compiler-errors``
Configuration menu - View commit details
-
Copy full SHA for 795bd09 - Browse repository at this point
Copy the full SHA 795bd09View commit details -
Rollup merge of rust-lang#118802 - ehuss:remove-edition-preview, r=Ta…
…KO8Ki Remove edition umbrella features. In the 2018 edition, there was an "umbrella" feature `#[feature(rust_2018_preview)]` which was used to enable several other features at once. This umbrella mechanism was not used in the 2021 edition and likely will not be used in 2024 either. During 2018 users reported that setting the feature was awkward, especially since they already needed to opt-in via the edition mechanism. This PR removes this mechanism because I believe it will not be used (and will clean up and simplify the code). I believe that there are better ways to handle features and editions. In short: - For highly experimental features, that may or may not be involved in an edition, they can implement regular feature gates like `tcx.features().my_feature`. - For experimental features that *might* be involved in an edition, they should implement gates with `tcx.features().my_feature && span.at_least_rust_20xx()`. This requires the user to still specify `#![feature(my_feature)]`, to avoid disrupting testing of other edition features which are ready and have been accepted within the edition. - For experimental features that have graduated to definitely be part of an edition, they should implement gates with `tcx.features().my_feature || span.at_least_rust_20xx()`, or just remove the feature check altogether and just check `span.at_least_rust_20xx()`. - For relatively simple changes, they can skip the whole feature gating thing and just check `span.at_least_rust_20xx()`, and rely on the instability of the edition itself (which requires `-Zunstable-options`) to gate it. I am working on documenting all of this in the rustc-dev-guide.
Configuration menu - View commit details
-
Copy full SHA for 95c3b37 - Browse repository at this point
Copy the full SHA 95c3b37View commit details -
Rollup merge of rust-lang#118807 - SUPERCILEX:allo, r=the8472
Remove an allocation in min_stack
Configuration menu - View commit details
-
Copy full SHA for ec59ea8 - Browse repository at this point
Copy the full SHA ec59ea8View commit details -
Rollup merge of rust-lang#118812 - notriddle:notriddle/assoc-name-int…
…ern, r=GuillaumeGomez rustdoc-search: do not treat associated type names as types [Before](http://notriddle.com/rustdoc-html-demo-6/tor-before/tor_config/list_builder/trait.DirectDefaultEmptyListBuilderAccessors.html?search=DirectDefaultEmptyListBuilderAccessors%3CT%3DT%3E%20-%3E%20Vec%3CT%3E#associatedtype.T) [After](http://notriddle.com/rustdoc-html-demo-6/tor-after/tor_config/list_builder/trait.DirectDefaultEmptyListBuilderAccessors.html?search=DirectDefaultEmptyListBuilderAccessors%3CT%3DT%3E%20-%3E%20Vec%3CT%3E#associatedtype.T) [Profile](http://notriddle.com/rustdoc-html-demo-6/tor-profile/index.html) As a bit of background information: in type-based queries, a type name that does not exist gets treated as a generic type variable. This causes a counterintuitive behavior in the `tor_config` crate, which has a trait with an associated type variable called `T`. This isn't a searchable concrete type, but its name still gets stored in the typeNameIdMap, as a convenient way to intern its name. (The second commit is a mostly unrelated bugfix.)
Configuration menu - View commit details
-
Copy full SHA for df7d23c - Browse repository at this point
Copy the full SHA df7d23cView commit details