-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 11 pull requests #101074
Rollup of 11 pull requests #101074
Commits on Jul 27, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 152c851 - Browse repository at this point
Copy the full SHA 152c851View commit details
Commits on Aug 21, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 8998024 - Browse repository at this point
Copy the full SHA 8998024View commit details
Commits on Aug 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 6a1f7af - Browse repository at this point
Copy the full SHA 6a1f7afView commit details -
Reduce duplication by moving fetching logic into a dedicated function.
Configuration menu - View commit details
-
Copy full SHA for 0a6af98 - Browse repository at this point
Copy the full SHA 0a6af98View commit details -
Configuration menu - View commit details
-
Copy full SHA for 754b3e7 - Browse repository at this point
Copy the full SHA 754b3e7View commit details
Commits on Aug 24, 2022
-
Remove some documentation duplicated between
writeln!
andwrite!
`writeln!` already includes a reference to `write!` for more information, so remove duplicated information.
Configuration menu - View commit details
-
Copy full SHA for a788650 - Browse repository at this point
Copy the full SHA a788650View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3c8618f - Browse repository at this point
Copy the full SHA 3c8618fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 589db1f - Browse repository at this point
Copy the full SHA 589db1fView commit details -
Configuration menu - View commit details
-
Copy full SHA for ae937cc - Browse repository at this point
Copy the full SHA ae937ccView commit details
Commits on Aug 25, 2022
-
Stabilize
const_ptr_offset_from
.Stabilization has been completed [here](rust-lang#92980 (comment)) with a FCP.
Configuration menu - View commit details
-
Copy full SHA for ad93272 - Browse repository at this point
Copy the full SHA ad93272View commit details -
Configuration menu - View commit details
-
Copy full SHA for 69ad634 - Browse repository at this point
Copy the full SHA 69ad634View commit details
Commits on Aug 26, 2022
-
rustdoc: omit start/end tags for empty item description blocks
Related to rust-lang#100952 This is definitely not a complete solution, but it does shrink keysyms/index.html on smithay from 620K to 516K.
Configuration menu - View commit details
-
Copy full SHA for e7b7f88 - Browse repository at this point
Copy the full SHA e7b7f88View commit details -
rustdoc: remove unused CSS for
hidden-by-*-hider
This CSS seems to have become obsolete with the move to `<details>` tags, and its corresponding JavaScript was removed in aee054d
Configuration menu - View commit details
-
Copy full SHA for 832fd23 - Browse repository at this point
Copy the full SHA 832fd23View commit details -
rustdoc: remove incorrect CSS selector
.impl-items table td
Fixes rust-lang#100994 This selector was added in c7312fb. The bug can be seen at <https://doc.rust-lang.org/1.27.0/alloc/slice/trait.SliceIndex.html#foreign-impls>. This rule was added to help with a `<table>` that was used for displaying the function signature [src] lockup. That lockup was changed in 34bd2b8 to use flexbox instead, leaving this selector unused (at least, for its original purpose).
Configuration menu - View commit details
-
Copy full SHA for 25eb52f - Browse repository at this point
Copy the full SHA 25eb52fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 20012ea - Browse repository at this point
Copy the full SHA 20012eaView commit details -
rustdoc: remove empty extern_crates and type="text/javascript" on script
Like rust-lang#101023, this removes an attribute with a default value.
Configuration menu - View commit details
-
Copy full SHA for 52582d3 - Browse repository at this point
Copy the full SHA 52582d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a74f453 - Browse repository at this point
Copy the full SHA a74f453View commit details
Commits on Aug 27, 2022
-
Rollup merge of rust-lang#96240 - fee1-dead-contrib:stabilize_const_o…
…ffset_from, r=Mark-Simulacrum Stabilize `const_ptr_offset_from`. Stabilization has been completed [here](rust-lang#92980 (comment)) with a FCP. Closes rust-lang#92980.
Configuration menu - View commit details
-
Copy full SHA for 539e408 - Browse repository at this point
Copy the full SHA 539e408View commit details -
Rollup merge of rust-lang#99784 - est31:deny_cfg_attr_crate_type_name…
…, r=Mark-Simulacrum Make forward compatibility lint deprecated_cfg_attr_crate_type_name deny by default Turns the forward compatibility lint added by rust-lang#83744 to deprecate `cfg_attr` usage with `#![crate_type]` and `#![crate_name]` attributes into deny by default. Copying the example from rust-lang#83744: ```Rust #![crate_type = "lib"] // remains working #![cfg_attr(foo, crate_type = "bin")] // will stop working ``` Over 8 months have passed since rust-lang#83744 was merged so I'd say this gives ample time for people to have been warned, so we can make the warning stronger. No usage was found via grep.app except for one, which was in an unmaintained code base that didn't seem to be used in the open source eco system. The crater run conducted in rust-lang#83744 also didn't show up anything. cc rust-lang#91632 - tracking issue for the lint
Configuration menu - View commit details
-
Copy full SHA for 134cc2d - Browse repository at this point
Copy the full SHA 134cc2dView commit details -
Rollup merge of rust-lang#100811 - czzrr:master, r=Mark-Simulacrum
Fix wrong compiletest filters on Windows As discussed in [rust-lang#79334](rust-lang#79334), when calling e.g. ``` python x.py test src/test/ui/expr/compound-assignment/eval-order.rs ``` on Windows, compiletest passes the filter `expr/compound-assignment/eval-order.rs` to libtest, which instead should be `expr\compound-assignment\eval-order.rs`, as that is the file found when collecting tests. This is what I fixed. I'm not sure how to organize a test for this. Any suggestions?
Configuration menu - View commit details
-
Copy full SHA for 7214f0c - Browse repository at this point
Copy the full SHA 7214f0cView commit details -
Rollup merge of rust-lang#100924 - est31:closure_to_fn_ptr, r=Mark-Si…
…mulacrum Smaller improvements of tidy and the unicode generator
Configuration menu - View commit details
-
Copy full SHA for e31bedc - Browse repository at this point
Copy the full SHA e31bedcView commit details -
Rollup merge of rust-lang#100953 - joshtriplett:write-docs, r=Mark-Si…
…mulacrum Update documentation for `write!` and `writeln!` rust-lang#37472 added this documentation, but it needs updating: - Remove some documentation duplicated between `writeln!` and `write!` - Update `write!` docs: can now import traits as `_` to avoid conflicts - Expand example to show how to implement qualified trait names
Configuration menu - View commit details
-
Copy full SHA for f4d4a40 - Browse repository at this point
Copy the full SHA f4d4a40View commit details -
Rollup merge of rust-lang#101018 - notriddle:notriddle/item-right-doc…
…block-short, r=GuillaumeGomez rustdoc: omit start/end tags for empty item description blocks Related to rust-lang#100952 This is definitely not a complete solution, but it does shrink keysyms/index.html on smithay from 620K to 516K.
Configuration menu - View commit details
-
Copy full SHA for 6ccad25 - Browse repository at this point
Copy the full SHA 6ccad25View commit details -
Rollup merge of rust-lang#101044 - notriddle:notriddle/css-hidden-by,…
… r=jsha rustdoc: remove unused CSS for `hidden-by-*-hider` This CSS seems to have become obsolete with the move to `<details>` tags, and its corresponding JavaScript was removed in aee054d
Configuration menu - View commit details
-
Copy full SHA for 84f5ccd - Browse repository at this point
Copy the full SHA 84f5ccdView commit details -
Rollup merge of rust-lang#101046 - notriddle:notriddle/table-css, r=jsha
rustdoc: remove incorrect CSS selector `.impl-items table td` Fixes rust-lang#100994 This selector was added in c7312fb. The bug can be seen at <https://doc.rust-lang.org/1.27.0/alloc/slice/trait.SliceIndex.html#foreign-impls>. This rule was added to help with a `<table>` that was used for displaying the function signature [src] lockup. That lockup was changed in 34bd2b8 to use flexbox instead, leaving this selector unused (at least, for its original purpose).
Configuration menu - View commit details
-
Copy full SHA for 0cad274 - Browse repository at this point
Copy the full SHA 0cad274View commit details -
Rollup merge of rust-lang#101057 - cjgillot:one-fn-sig, r=compiler-er…
…rors Merge implementations of HIR fn_decl and fn_sig.
Configuration menu - View commit details
-
Copy full SHA for aa6b750 - Browse repository at this point
Copy the full SHA aa6b750View commit details -
Rollup merge of rust-lang#101062 - notriddle:notriddle/text-javascrip…
…t, r=GuillaumeGomez rustdoc: remove empty extern_crates and type="text/javascript" on script Like rust-lang#101023, this removes an attribute with a default value.
Configuration menu - View commit details
-
Copy full SHA for bdbbbe6 - Browse repository at this point
Copy the full SHA bdbbbe6View commit details -
Rollup merge of rust-lang#101063 - GuillaumeGomez:merge-duplicated-cs…
…s, r=notriddle Merge duplicated CSS rules I used the [stylelint](https://stylelint.io/user-guide/configure) tool to check for duplicated CSS rules in order to merge them. r? `@notriddle`
Configuration menu - View commit details
-
Copy full SHA for bd89372 - Browse repository at this point
Copy the full SHA bd89372View commit details