Skip to content
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

Closed
wants to merge 36 commits into from
Closed

Commits on Feb 27, 2020

  1. Configuration menu
    Copy the full SHA
    1244ced View commit details
    Browse the repository at this point in the history
  2. Remove spotlight usage

    GuillaumeGomez committed Feb 27, 2020
    Configuration menu
    Copy the full SHA
    13c6d58 View commit details
    Browse the repository at this point in the history

Commits on Mar 3, 2020

  1. Configuration menu
    Copy the full SHA
    7859f0e View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    812e62f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    1a1dcfa View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    2af5e87 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    a20d54f View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2020

  1. Configuration menu
    Copy the full SHA
    842af36 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f54e863 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6200f5c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e32ee55 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    634a167 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c6f1244 View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    6f23650 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    eb67eca View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    a30f55f View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    bd4dad4 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    46d85e5 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    a32afa3 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    a5d1e18 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    2cb2559 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b11cd0b View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2020

  1. Configuration menu
    Copy the full SHA
    c1df945 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    41374d7 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2020

  1. Allow ZSTs in AllocRef

    TimDiekmann committed Mar 8, 2020
    Configuration menu
    Copy the full SHA
    f77afc8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d32924f View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2020

  1. Configuration menu
    Copy the full SHA
    6701215 View commit details
    Browse the repository at this point in the history
  2. Remove the need for no_force

    Zoxc committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    cbce217 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f445077 View commit details
    Browse the repository at this point in the history
  4. Add a comment to recover.

    Zoxc committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    2f12009 View commit details
    Browse the repository at this point in the history
  5. 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
    Centril committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    0cbaefc View commit details
    Browse the repository at this point in the history
  6. 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
    Centril committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    dd6a074 View commit details
    Browse the repository at this point in the history
  7. 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
    Centril committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    522b1d0 View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#69714 - spastorino:place-ref-lifetime, r=ol…

    …i-obk
    
    Make PlaceRef take just one lifetime
    
    r? @eddyb
    Centril committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    3407442 View commit details
    Browse the repository at this point in the history
  9. 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
    Centril committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    e3f040f View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#69836 - JohnTitor:immediate-outputs, r=nagisa

    Check if output is immediate value
    
    Fixes rust-lang#62046
    
    r? @nagisa
    Centril committed Mar 9, 2020
    Configuration menu
    Copy the full SHA
    da9d266 View commit details
    Browse the repository at this point in the history