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 #87156

Merged
merged 17 commits into from
Jul 15, 2021
Merged

Rollup of 8 pull requests #87156

merged 17 commits into from
Jul 15, 2021

Commits on Jul 8, 2021

  1. Configuration menu
    Copy the full SHA
    e304443 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2021

  1. Configuration menu
    Copy the full SHA
    6e47c8d View commit details
    Browse the repository at this point in the history

Commits on Jul 14, 2021

  1. Configuration menu
    Copy the full SHA
    4541aa9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    636fcac View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    da189d9 View commit details
    Browse the repository at this point in the history
  4. OOPS

    BoxyUwU committed Jul 14, 2021
    Configuration menu
    Copy the full SHA
    b3b6b66 View commit details
    Browse the repository at this point in the history

Commits on Jul 15, 2021

  1. Update cargo

    ehuss committed Jul 15, 2021
    Configuration menu
    Copy the full SHA
    0c4b2a8 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9bab94f View commit details
    Browse the repository at this point in the history
  3. Added Arc::try_pin

    This helper is in line with other other allocation helpers on Arc.
    alex committed Jul 15, 2021
    Configuration menu
    Copy the full SHA
    a214911 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#85579 - alex:patch-1, r=yaahc

    Added Arc::try_pin
    
    This helper is in line with other other allocation helpers on Arc.
    
    I didn't think this would require an RFC or broader discussion, let me know if that's incorrect.
    JohnTitor authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    10f335f View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#86478 - ehuss:future-incompat-test, r=oli-obk

    Add -Zfuture-incompat-test to assist with testing future-incompat reports.
    
    This adds a `-Zfuture-incompat-test` cli flag to assist with testing future-incompatible reports. This flag causes all lints to be treated as a future-incompatible lint, and will emit a report for them. This is being added so that Cargo's testsuite can reliably test the reporting infrastructure.  Right now, Cargo relies on using array_into_iter as a test subject. Since the breaking "future incompatible" lints are never intended to last forever, this means Cargo's testsuite would always need to keep changing to choose different lints (for example, rust-lang#86330 proposed dropping that moniker for array_into_iter). With this flag, Cargo's tests can trigger any lint and check for the report.
    JohnTitor authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    9813013 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#86947 - m-ou-se:assert-matches-to-submodule…

    …, r=yaahc
    
    Move assert_matches to an inner module
    
    Fixes rust-lang#82913
    JohnTitor authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    a5acb7b View commit details
    Browse the repository at this point in the history
  7. Rollup merge of rust-lang#87081 - a1phyr:add_wasi_ext_tracking_issue,…

    … r=dtolnay
    
    Add tracking issue number to `wasi_ext`
    
    Feature `wasi_ext` is tracked by rust-lang#71213 but is was not in the source code.
    JohnTitor authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    b99f7ed View commit details
    Browse the repository at this point in the history
  8. Rollup merge of rust-lang#87127 - poliorcetics:ptr-rotate-safety, r=s…

    …cottmcm
    
    Add safety comments in private core::slice::rotate::ptr_rotate function
    
    Helps with rust-lang#66219.
    
    ```@rustbot``` label C-cleanup T-compiler T-libs
    JohnTitor authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    dc464f2 View commit details
    Browse the repository at this point in the history
  9. Rollup merge of rust-lang#87134 - BoxyUwU:cgd-self-ty-error, r=lcnr

    Make SelfInTyParamDefault wording not be specific to type defaults
    
    r? ```@lcnr```
    JohnTitor authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    6d0d80e View commit details
    Browse the repository at this point in the history
  10. Rollup merge of rust-lang#87147 - ehuss:update-cargo, r=ehuss

    Update cargo
    
    13 commits in 3ebb5f15a940810f250b68821149387af583a79e..66a6737a0c9f3a974af2dd032a65d3e409c77aac
    2021-07-02 20:35:38 +0000 to 2021-07-14 20:54:28 +0000
    - Add format option to `cargo tree` to print the lib_name (rust-lang/cargo#9663)
    - Prefer patched versions of dependencies (rust-lang/cargo#9639)
    - When a dependency does not have a version, git or path, fails directly (rust-lang/cargo#9686)
    - Spot the crate typo easily (rust-lang/cargo#9665)
    - remove unnecessary 'collect' (rust-lang/cargo#9616)
    - Make it easier to run testsuite with a custom toolchain. (rust-lang/cargo#9679)
    - Serialize `cargo fix` (rust-lang/cargo#9677)
    - Don't recommend filing issues on rust-lang/cargo for Cargo.toml errors. (rust-lang/cargo#9658)
    - Update nightly failure notification. (rust-lang/cargo#9657)
    - Update Windows env uppercase key check. (rust-lang/cargo#9654)
    - Unignore fix_edition_2021. (rust-lang/cargo#9662)
    - Warning when using features in patch (rust-lang/cargo#9666)
    - Unify cargo and rustc's error reporting (rust-lang/cargo#9655)
    JohnTitor authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    20b363c View commit details
    Browse the repository at this point in the history
  11. Rollup merge of rust-lang#87154 - GuillaumeGomez:rev-attr-a, r=JohnTitor

    Fix misuse of rev attribute on <a> tag
    
    The `rev` attribute is supposed to talk about "ownership" as far as I could found out. This attribute seems not very well defined in the HTML spec and its usage in rustdoc is suboptimal.
    
    It was found out in rust-lang#87149.
    
    r? `@JohnTitor`
    JohnTitor authored Jul 15, 2021
    Configuration menu
    Copy the full SHA
    262a4f9 View commit details
    Browse the repository at this point in the history