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

Closed
wants to merge 20 commits into from
Closed

Commits on Oct 6, 2022

  1. Configuration menu
    Copy the full SHA
    99182dd View commit details
    Browse the repository at this point in the history
  2. std: add thread parking tests

    joboet committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    0ad4dd4 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2022

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

Commits on Oct 13, 2022

  1. Configuration menu
    Copy the full SHA
    e8a6e60 View commit details
    Browse the repository at this point in the history
  2. resolve: Remove redundant item lifetime ribs

    and cleanup lifetime rib walking loops
    petrochenkov committed Oct 13, 2022
    Configuration menu
    Copy the full SHA
    e94ec30 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f634106 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2022

  1. Configuration menu
    Copy the full SHA
    b841848 View commit details
    Browse the repository at this point in the history
  2. normalize stderr

    TaKO8Ki committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    5378677 View commit details
    Browse the repository at this point in the history
  3. Update cargo

    12 commits in b8f30cb23c4e5f20854a4f683325782b7cff9837..b332991a57c9d055f1864de1eed93e2178d49440
    2022-10-10 19:16:06 +0000 to 2022-10-13 22:05:28 +0000
    - Differentiate the warning when an alias (built-in or user-defined) shadows an external subcommand (rust-lang/cargo#11170)
    - chore: Update tests for latest clap (rust-lang/cargo#11235)
    - feat(publish): Support 'publish.timeout' config behind '-Zpublish-timeout' (rust-lang/cargo#11230)
    - Add missing edition (rust-lang/cargo#11231)
    - doc(profiles): add module level doc (rust-lang/cargo#11219)
    - refactor(publish): Clarify which SourceId is being used (rust-lang/cargo#11216)
    - Add new SourceKind::SparseRegistry to differentiate sparse registries (rust-lang/cargo#11209)
    - Fix deadlock when build scripts are waiting for input on stdin (rust-lang/cargo#11205)
    - refactor: New variant `FeaturesFor::ArtifactDep` (rust-lang/cargo#11184)
    - Fix rustdoc warning about unclosed HTML tag (rust-lang/cargo#11221)
    - refactor(tests): Prepare for wait-for-publish test changes (rust-lang/cargo#11210)
    - Add configuration option for controlling crates.io protocol (rust-lang/cargo#11215)
    weihanglo committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    40bb4b7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    f528414 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6f0c247 View commit details
    Browse the repository at this point in the history
  6. Remove execute bit from lock file permissions

    Danny Milosavljevic committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    ae12bb1 View commit details
    Browse the repository at this point in the history
  7. remove no_core feature

    TaKO8Ki committed Oct 14, 2022
    Configuration menu
    Copy the full SHA
    062ea9c View commit details
    Browse the repository at this point in the history

Commits on Oct 15, 2022

  1. Rollup merge of rust-lang#102543 - daym:patch-1, r=joshtriplett

    Remove "execute" bit from lock file permissions
    
    Previously, flock would set the "execute" bit on Rust lock files. That makes no sense.
    
    This patch clears the "execute" bit on Rust lock files.
    
    See issue rust-lang#102531.
    Dylan-DPC authored Oct 15, 2022
    Configuration menu
    Copy the full SHA
    4528aa6 View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#102773 - joboet:apple_parker, r=thomcc

    Use semaphores for thread parking on Apple platforms
    
    Currently we use a mutex-condvar pair for thread parking on Apple systems. Unfortunately, `pthread_cond_timedwait` uses the real-time clock for measuring time, which causes problems when the system time changes. The parking implementation in this PR uses a semaphore instead, which measures monotonic time by default, avoiding these issues. As a further benefit, this has the potential to improve performance a bit, since `unpark` does not need to wait for a lock to be released.
    
    Since the Mach semaphores are poorly documented (I could not find availability or stability guarantees for instance), this uses a [dispatch semaphore](https://developer.apple.com/documentation/dispatch/dispatch_semaphore?language=objc) instead. While it adds a layer of indirection (it uses Mach semaphores internally), the overhead is probably negligible.
    
    Tested on macOS 12.5.
    
    r? `````@thomcc`````
    Dylan-DPC authored Oct 15, 2022
    Configuration menu
    Copy the full SHA
    47d6e99 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#102884 - petrochenkov:liferib, r=cjgillot

    resolve: Some cleanup, asserts and tests for lifetime ribs
    
    Follow up to rust-lang#98279 and friends.
    r? `@cjgillot`
    Dylan-DPC authored Oct 15, 2022
    Configuration menu
    Copy the full SHA
    5d29ef5 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#102954 - GuillaumeGomez:cfg-hide-attr-check…

    …s, r=Manishearth
    
    Add missing checks for `doc(cfg_hide(...))`
    
    Part of  rust-lang#43781.
    
    The `doc(cfg_hide(...))` attribute can only be used at the crate level and takes a list of attributes as argument.
    
    r? ``@Manishearth``
    Dylan-DPC authored Oct 15, 2022
    Configuration menu
    Copy the full SHA
    2849f8a View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#103003 - TaKO8Ki:fix-102989, r=compiler-errors

    Fix `suggest_floating_point_literal` ICE
    
    Fixes rust-lang#102989
    Dylan-DPC authored Oct 15, 2022
    Configuration menu
    Copy the full SHA
    a75085f View commit details
    Browse the repository at this point in the history
  6. Rollup merge of rust-lang#103041 - weihanglo:update-cargo, r=ehuss

    Update cargo
    
    12 commits in b8f30cb23c4e5f20854a4f683325782b7cff9837..b332991a57c9d055f1864de1eed93e2178d49440 2022-10-10 19:16:06 +0000 to 2022-10-13 22:05:28 +0000
    - Differentiate the warning when an alias (built-in or user-defined) shadows an external subcommand (rust-lang/cargo#11170)
    - chore: Update tests for latest clap (rust-lang/cargo#11235)
    - feat(publish): Support 'publish.timeout' config behind '-Zpublish-timeout' (rust-lang/cargo#11230)
    - Add missing edition (rust-lang/cargo#11231)
    - doc(profiles): add module level doc (rust-lang/cargo#11219)
    - refactor(publish): Clarify which SourceId is being used (rust-lang/cargo#11216)
    - Add new SourceKind::SparseRegistry to differentiate sparse registries (rust-lang/cargo#11209)
    - Fix deadlock when build scripts are waiting for input on stdin (rust-lang/cargo#11205)
    - refactor: New variant `FeaturesFor::ArtifactDep` (rust-lang/cargo#11184)
    - Fix rustdoc warning about unclosed HTML tag (rust-lang/cargo#11221)
    - refactor(tests): Prepare for wait-for-publish test changes (rust-lang/cargo#11210)
    - Add configuration option for controlling crates.io protocol (rust-lang/cargo#11215)
    Dylan-DPC authored Oct 15, 2022
    Configuration menu
    Copy the full SHA
    27501e2 View commit details
    Browse the repository at this point in the history