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 3 pull requests #90792

Closed
wants to merge 7 commits into from

Commits on Nov 3, 2021

  1. Make RawVec private to alloc

    RawVec was previously exposed for compiler-internal use (libarena specifically) in 1acbb0a
    
    Since it is unstable, doc-hidden and has no associated tracking issue it was never meant for public use. And since
    it is no longer used outside alloc itself it can be made private again.
    
    Also remove some functions that are dead due to lack of internal users.
    the8472 committed Nov 3, 2021
    Configuration menu
    Copy the full SHA
    7afe6f5 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2021

  1. Add more missing methods to IntraLinkCrateLoader

    This helps with (but does not fix)
    rust-lang#84738. I tested on
    jyn514/objr@edcee7b
    and still hit ICEs.
    jyn514 committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    cdafe99 View commit details
    Browse the repository at this point in the history
  2. Go back to loading all external crates unconditionally

    This *continues* to cause regressions. This code will be unnecessary
    once access to the resolver happens fully before creating the tyctxt
    (rust-lang#83761), so load all crates unconditionally for now.
    jyn514 committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    51345a8 View commit details
    Browse the repository at this point in the history

Commits on Nov 11, 2021

  1. Change paths for dist command to match the components they generate

    Before, you could have the confusing situation where the command to
    generate a component had no relation to the name of that component (e.g.
    the `rustc` component was generated with `src/librustc`). This changes
    the name to make them match up.
    jyn514 committed Nov 11, 2021
    Configuration menu
    Copy the full SHA
    3366327 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#90489 - jyn514:load-all-extern-crates, r=pe…

    …trochenkov
    
    rustdoc: Go back to loading all external crates unconditionally
    
    This *continues* to cause regressions. This code will be unnecessary
    once access to the resolver happens fully before creating the tyctxt
    (rust-lang#83761), so load all crates unconditionally for now. To minimize churn, this leaves in the code for loading crates selectively.
    
    "Fixes" rust-lang#84738. Previously: rust-lang#83738, rust-lang#85749, rust-lang#88215
    
    r? `@petrochenkov` cc `@camelid` (this should fix the "index out of bounds" error you had while looking up `crate_name`).
    matthiaskrgr authored Nov 11, 2021
    Configuration menu
    Copy the full SHA
    0f2f20d View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#90542 - the8472:privatize-the-means-of-rawv…

    …ec-production, r=joshtriplett
    
    Make RawVec private to alloc
    
    RawVec was previously exposed for compiler-internal use (libarena specifically) in 1acbb0a
    
    Since it is unstable, doc-hidden and has no associated tracking issue it was never meant for public use. And since
    it is no longer used outside alloc itself it can be made private again.
    
    Also remove some functions that are dead due to lack of internal users.
    matthiaskrgr authored Nov 11, 2021
    Configuration menu
    Copy the full SHA
    fda219a View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#90684 - jyn514:dist-aliases, r=Mark-Simulacrum

    Change paths for `dist` command to match the components they generate
    
    Before, you could have the confusing situation where the command to
    generate a component had no relation to the name of that component (e.g.
    the `rustc` component was generated with `src/librustc`). This changes
    the name to make them match up.
    matthiaskrgr authored Nov 11, 2021
    Configuration menu
    Copy the full SHA
    17dedcc View commit details
    Browse the repository at this point in the history