-
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 6 pull requests #69856
Rollup of 6 pull requests #69856
Commits on Feb 27, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 1244ced - Browse repository at this point
Copy the full SHA 1244cedView commit details -
Configuration menu - View commit details
-
Copy full SHA for 13c6d58 - Browse repository at this point
Copy the full SHA 13c6d58View commit details
Commits on Mar 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 7859f0e - Browse repository at this point
Copy the full SHA 7859f0eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 812e62f - Browse repository at this point
Copy the full SHA 812e62fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a1dcfa - Browse repository at this point
Copy the full SHA 1a1dcfaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2af5e87 - Browse repository at this point
Copy the full SHA 2af5e87View commit details -
Configuration menu - View commit details
-
Copy full SHA for a20d54f - Browse repository at this point
Copy the full SHA a20d54fView commit details
Commits on Mar 4, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 842af36 - Browse repository at this point
Copy the full SHA 842af36View commit details -
Configuration menu - View commit details
-
Copy full SHA for f54e863 - Browse repository at this point
Copy the full SHA f54e863View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6200f5c - Browse repository at this point
Copy the full SHA 6200f5cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e32ee55 - Browse repository at this point
Copy the full SHA e32ee55View commit details -
Configuration menu - View commit details
-
Copy full SHA for 634a167 - Browse repository at this point
Copy the full SHA 634a167View commit details -
Configuration menu - View commit details
-
Copy full SHA for c6f1244 - Browse repository at this point
Copy the full SHA c6f1244View commit details -
Configuration menu - View commit details
-
Copy full SHA for 6f23650 - Browse repository at this point
Copy the full SHA 6f23650View commit details -
Configuration menu - View commit details
-
Copy full SHA for eb67eca - Browse repository at this point
Copy the full SHA eb67ecaView commit details -
Configuration menu - View commit details
-
Copy full SHA for a30f55f - Browse repository at this point
Copy the full SHA a30f55fView commit details -
Configuration menu - View commit details
-
Copy full SHA for bd4dad4 - Browse repository at this point
Copy the full SHA bd4dad4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 46d85e5 - Browse repository at this point
Copy the full SHA 46d85e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for a32afa3 - Browse repository at this point
Copy the full SHA a32afa3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a5d1e18 - Browse repository at this point
Copy the full SHA a5d1e18View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2cb2559 - Browse repository at this point
Copy the full SHA 2cb2559View commit details -
Configuration menu - View commit details
-
Copy full SHA for b11cd0b - Browse repository at this point
Copy the full SHA b11cd0bView commit details
Commits on Mar 5, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c1df945 - Browse repository at this point
Copy the full SHA c1df945View commit details -
Configuration menu - View commit details
-
Copy full SHA for 41374d7 - Browse repository at this point
Copy the full SHA 41374d7View commit details
Commits on Mar 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for f77afc8 - Browse repository at this point
Copy the full SHA f77afc8View commit details -
Configuration menu - View commit details
-
Copy full SHA for d32924f - Browse repository at this point
Copy the full SHA d32924fView commit details
Commits on Mar 9, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6701215 - Browse repository at this point
Copy the full SHA 6701215View commit details -
Configuration menu - View commit details
-
Copy full SHA for cbce217 - Browse repository at this point
Copy the full SHA cbce217View commit details -
Configuration menu - View commit details
-
Copy full SHA for f445077 - Browse repository at this point
Copy the full SHA f445077View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2f12009 - Browse repository at this point
Copy the full SHA 2f12009View commit details -
Rollup merge of rust-lang#69475 - Zoxc:no-no-force, r=michaelwoerister
Remove the `no_force` query attribute This removes the `no_force` query attribute and instead uses the `DepNodeParams` trait to find out if a query can be forced. Also the `analysis` query is moved to the query macro. r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for 0cbaefc - Browse repository at this point
Copy the full SHA 0cbaefcView commit details -
Rollup merge of rust-lang#69514 - GuillaumeGomez:remove-spotlight, r=…
…kinnison Remove spotlight I had a few comments saying that this feature was at best misunderstood or not even used so I decided to organize a poll about on [twitter](https://twitter.com/imperioworld_/status/1232769353503956994). After 87 votes, the result is very clear: it's not useful. Considering the amount of code we have just to run it, I think it's definitely worth it to remove it. r? @kinnison cc @ollie27
Configuration menu - View commit details
-
Copy full SHA for dd6a074 - Browse repository at this point
Copy the full SHA dd6a074View commit details -
Rollup merge of rust-lang#69677 - petrochenkov:spancode, r=eddyb
rustc_metadata: Give decoder access to whole crate store Pre-requisite for rust-lang#68941. r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for 522b1d0 - Browse repository at this point
Copy the full SHA 522b1d0View commit details -
Rollup merge of rust-lang#69714 - spastorino:place-ref-lifetime, r=ol…
…i-obk Make PlaceRef take just one lifetime r? @eddyb
Configuration menu - View commit details
-
Copy full SHA for 3407442 - Browse repository at this point
Copy the full SHA 3407442View commit details -
Rollup merge of rust-lang#69799 - TimDiekmann:zst, r=Amanieu
Allow ZSTs in `AllocRef` Allows ZSTs in all `AllocRef` methods. The implementation of `AllocRef` for `Global` and `System` were adjusted to reflect those changes. This is the second item on the roadmap to support ZSTs in `AllocRef`: rust-lang/wg-allocators#38 (comment) After this has landed, I will adapt `RawVec`, but since this will be a pretty big overhaul, it makes sense to do a different PR for it. ~~Requires rust-lang#69794 to land first~~ r? @Amanieu
Configuration menu - View commit details
-
Copy full SHA for e3f040f - Browse repository at this point
Copy the full SHA e3f040fView commit details -
Rollup merge of rust-lang#69836 - JohnTitor:immediate-outputs, r=nagisa
Check if output is immediate value Fixes rust-lang#62046 r? @nagisa
Configuration menu - View commit details
-
Copy full SHA for da9d266 - Browse repository at this point
Copy the full SHA da9d266View commit details