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 8 pull requests #65769

Closed
wants to merge 24 commits into from
Closed

Commits on Oct 22, 2019

  1. Configuration menu
    Copy the full SHA
    600607f View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    bbd53de View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    133cd2c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f0e6cd9 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    9f788f3 View commit details
    Browse the repository at this point in the history
  6. Remove FIXME

    varkor committed Oct 22, 2019
    Configuration menu
    Copy the full SHA
    7f13a4a View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    2dda8ad View commit details
    Browse the repository at this point in the history
  8. Update cargo

    ehuss committed Oct 22, 2019
    Configuration menu
    Copy the full SHA
    fe3dc31 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2019

  1. Configuration menu
    Copy the full SHA
    0771b89 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8c08d8a View commit details
    Browse the repository at this point in the history
  3. Update ui tests

    GuillaumeGomez committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    b64d69d View commit details
    Browse the repository at this point in the history
  4. UI failures fix

    Umesh Kalappa authored and BaoshanPang committed Oct 23, 2019
    Configuration menu
    Copy the full SHA
    eb6d757 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2019

  1. Tweak format string error to point at arguments always

    Add secondary span labels with no text to make it clear when there's a
    mismatch bewteen the positional arguments in a format string and the
    arguments to the macro. This shouldn't affect experienced users, but it
    should make it easier for newcomers to more clearly understand how
    `format!()` and `println!()` are supposed to be used.
    
    ```
    error: 2 positional arguments in format string, but there is 1 argument
     --> file8.rs:2:14
      |
    2 |     format!("{} {}", 1);
      |              ^^ ^^   -
    ```
    
    instead of
    
    ```
    error: 2 positional arguments in format string, but there is 1 argument
     --> file8.rs:2:14
      |
    2 |     format!("{} {}", 1);
      |              ^^ ^^
    ```
    estebank committed Oct 24, 2019
    Configuration menu
    Copy the full SHA
    8467cef View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    18d873e View commit details
    Browse the repository at this point in the history
  3. Update hashbrown to 0.6.2

    Pulls in rust-lang/hashbrown#119 which should be a good improvement for
    compile times of hashmap-heavy crates.
    alexcrichton committed Oct 24, 2019
    Configuration menu
    Copy the full SHA
    060b6cb View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    184a61f View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#65405 - GuillaumeGomez:long-err-explanation…

    …-E0740, r=Dylan-DPC
    
    Create new error E0741 and add long error explanation
    
    Part of rust-lang#61137.
    
    Creates E0740 error code and add its long error explanation.
    Centril authored Oct 24, 2019
    Configuration menu
    Copy the full SHA
    3f86775 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#65627 - varkor:const-generics-forbid-non-st…

    …ructural_match, r=petrochenkov
    
    Forbid non-`structural_match` types in const generics
    
    Fixes rust-lang#60286.
    Centril authored Oct 24, 2019
    Configuration menu
    Copy the full SHA
    aa64015 View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#65710 - ehuss:update-cargo, r=alexcrichton

    Update cargo
    
    6 commits in 3a9abe3f065554a7fbc59f440df2baba4a6e47ee..3ba5f27170db10af7a92f2b682e049397197b8fa
    2019-10-15 15:55:35 +0000 to 2019-10-22 15:05:18 +0000
    - Fix typo in `cargo install --profile` help (rust-lang/cargo#7532)
    - Use stricter -Z flag parsing. (rust-lang/cargo#7531)
    - Set timestamp on generated files in archive to now (rust-lang/cargo#7523)
    - Support rustc's `-Z panic-abort-tests` in Cargo (rust-lang/cargo#7460)
    - rustfmt for nightly changes. (rust-lang/cargo#7526)
    - Allow --all-features in root of virtual workspace. (rust-lang/cargo#7525)
    Centril authored Oct 24, 2019
    Configuration menu
    Copy the full SHA
    b6750dd View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#65729 - Wind-River:master_003, r=alexcrichton

    Update test cases for vxWorks
    Centril authored Oct 24, 2019
    Configuration menu
    Copy the full SHA
    92cbe5a View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#65746 - estebank:newcomer-format, r=Centril

    Tweak format string error to point at arguments always
    
    Add secondary span labels with no text to make it clear when there's a
    mismatch bewteen the positional arguments in a format string and the
    arguments to the macro. This shouldn't affect experienced users, but it
    should make it easier for newcomers to more clearly understand how
    `format!()` and `println!()` are supposed to be used.
    
    ```
    error: 2 positional arguments in format string, but there is 1 argument
     --> file8.rs:2:14
      |
    2 |     format!("{} {}", 1);
      |              ^^ ^^   -
    ```
    
    instead of
    
    ```
    error: 2 positional arguments in format string, but there is 1 argument
     --> file8.rs:2:14
      |
    2 |     format!("{} {}", 1);
      |              ^^ ^^
    ```
    
    r? @Centril
    Centril authored Oct 24, 2019
    Configuration menu
    Copy the full SHA
    1b0fdea View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#65753 - csmoe:derive_fold, r=Centril

    Don't assert for different instance on impl trait alias
    
    Closes rust-lang#65679
    r? @Centril @nikomatsakis
    Centril authored Oct 24, 2019
    Configuration menu
    Copy the full SHA
    6653c77 View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#65755 - estebank:icicle, r=davidtwco

    Avoid ICE when adjusting bad self ty
    
    Fix rust-lang#65611.
    Centril authored Oct 24, 2019
    Configuration menu
    Copy the full SHA
    3312147 View commit details
    Browse the repository at this point in the history
  12. Rollup merge of rust-lang#65766 - alexcrichton:less-inline-hashbrown,…

    … r=Mark-Simulacrum
    
    Update hashbrown to 0.6.2
    
    Pulls in rust-lang/hashbrown#119 which should be a good improvement for
    compile times of hashmap-heavy crates.
    Centril authored Oct 24, 2019
    Configuration menu
    Copy the full SHA
    a0cf897 View commit details
    Browse the repository at this point in the history