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 5 pull requests #127305

Merged
merged 11 commits into from
Jul 4, 2024
Merged

Rollup of 5 pull requests #127305

merged 11 commits into from
Jul 4, 2024

Commits on Jun 24, 2024

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

Commits on Jul 1, 2024

  1. Remove unqualified import io:: Error for vxworks as all Error referen…

    …ces are qualified in process_vxworks.rs
    B I Mohammed Abbas committed Jul 1, 2024
    Configuration menu
    Copy the full SHA
    9732251 View commit details
    Browse the repository at this point in the history

Commits on Jul 3, 2024

  1. Fall back on remove dir implementation for vxworks

    B I Mohammed Abbas committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    a6c03ae View commit details
    Browse the repository at this point in the history
  2. jsondocck: Use correct index for error message.

    If you misused a count command like `@count $some.selector '"T'"`, you would panic with OOB:
    
    ```
    thread 'main' panicked at src/tools/jsondocck/src/main.rs:76:92:
    index out of bounds: the len is 2 but the index is 2
    ```
    
    Fixing this typo, we now get.
    
    ```
    Invalid command: Second argument to @count must be a valid usize (got `"T"`) on line 20
    ```
    
    As some point I want to rewrite this code to avoid indexing in general, but this is a nice small fix.
    aDotInTheVoid committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    ccc8baf View commit details
    Browse the repository at this point in the history
  3. rustdoc-json: Better representation of lifetime bounds in where clauses.

    As suggested [on zulip][1], there's no need to use `GenericBound` here,
    as the only bound a lifetime can have is that it outlives other
    lifetimes.
    
    While we're making breaking changes here, I also renamed it from using
    "region" to "lifetime", as this is more user-aligned. See [this
    comment][2] for details.
    
    [1]: https://rust-lang.zulipchat.com/#narrow/stream/266220-t-rustdoc/topic/.60ItemEnum.3A.3AOpaqueTy.60/near/448871430
    [2]: rust-lang#100961 (comment)
    aDotInTheVoid committed Jul 3, 2024
    Configuration menu
    Copy the full SHA
    7e8aac5 View commit details
    Browse the repository at this point in the history

Commits on Jul 4, 2024

  1. chore: remove repeat words

    Signed-off-by: cuishuang <imcusg@gmail.com>
    cuishuang committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    b50e915 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#126792 - wooden-worm:master, r=Mark-Simulacrum

    wasm64 build with target-feature=+simd128,+atomics
    
    Fixes rust-lang#126778
    jhpratt committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    6cf34c0 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#127195 - biabbas:vxworks_cleanup, r=jhpratt

    Remove unqualified form import of io::Error in process_vxworks.rs and fallback on remove_dir_impl for vxworks
    
    Hi all,
    This is to address issue rust-lang#127084. On inspections it was found that io::Error refrences were all of qualified form and there was no need to add a unqualified form import. Also to successfully build rust for vxworks, we need to fallback on the remove_impl_dir implementations.
    
    Thank you.
    jhpratt committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    5712539 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#127287 - aDotInTheVoid:jsondocck-index, r=G…

    …uillaumeGomez
    
    jsondocck: Use correct index for error message.
    
    If you misused a count command like ``@count` $some.selector '"T'"`, you would panic with OOB:
    
    ```
    thread 'main' panicked at src/tools/jsondocck/src/main.rs:76:92:
    index out of bounds: the len is 2 but the index is 2
    ```
    
    This is because 57c85bd removed the file param, but didn't update the error case. We now error with:
    
    ```
    Invalid command: Second argument to `@count` must be a valid usize (got `"T"`) on line 20
    ```
    
    As some point I want to rewrite this code to avoid indexing in general, but this is a nice small fix.
    
    r? `@GuillaumeGomez`
    jhpratt committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    726b9b7 View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#127289 - aDotInTheVoid:rustdoc-json-lt, r=G…

    …uillaumeGomez
    
    rustdoc-json: Better representation of lifetime bounds in where clauses.
    
    As suggested [on zulip][1] (CC `@its-the-shrimp),` there's no need to use `GenericBound` here, as the only bound a lifetime can have is that it outlives other lifetimes.
    
    While we're making breaking changes here, I also renamed it from using "region" to "lifetime", as this is more user-aligned. See [this comment][2] for details.
    
    [1]: https://rust-lang.zulipchat.com/#narrow/stream/266220-t-rustdoc/topic/.60ItemEnum.3A.3AOpaqueTy.60/near/448871430
    [2]: rust-lang#100961 (comment)
    
    r? `@GuillaumeGomez`
    jhpratt committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    1b1b745 View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#127303 - cuishuang:master, r=jhpratt

    chore: remove repeat words
    jhpratt committed Jul 4, 2024
    Configuration menu
    Copy the full SHA
    71ea0b9 View commit details
    Browse the repository at this point in the history