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

Merged
merged 12 commits into from
Mar 11, 2022
Merged

Rollup of 5 pull requests #94834

merged 12 commits into from
Mar 11, 2022

Commits on Jan 25, 2022

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

Commits on Feb 25, 2022

  1. Rename unix::net::SocketAddr::from_path to from_pathname

    Matching SocketAddr::as_pathname.
    Thomasdezeeuw committed Feb 25, 2022
    Configuration menu
    Copy the full SHA
    7f44b3a View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2022

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

Commits on Mar 9, 2022

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

Commits on Mar 10, 2022

  1. configure: don't serialize empty array elements

    Before this change:
    
        $ ./configure --codegen-backends=
        [..]
        $ grep -P '^codegen-backends' config.toml
        codegen-backends = ['']
    
    After this change:
    
        $ ./configure --codegen-backends=
        [..]
        $ grep -P '^codegen-backends' config.toml
        codegen-backends = []
    Jon Gjengset committed Mar 10, 2022
    Configuration menu
    Copy the full SHA
    7c20a29 View commit details
    Browse the repository at this point in the history
  2. Move note about 0 gap to signed integers

    Was accidentally placed on unsigned integers, where it is not relevant.
    nvzqz committed Mar 10, 2022
    Configuration menu
    Copy the full SHA
    ecb7927 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    229e01d View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2022

  1. Rollup merge of rust-lang#93293 - nvzqz:nonzero-min-max, r=joshtriplett

    Implement `MIN`/`MAX` constants for non-zero integers
    
    This adds the associated [`MIN`](https://doc.rust-lang.org/stable/std/primitive.usize.html#associatedconstant.MIN)/[`MAX`](https://doc.rust-lang.org/stable/std/primitive.usize.html#associatedconstant.MAX) constants to `NonZero{U,I}{8,16,32,64,128,size}`, requested in rust-lang#89065.
    
    This reimplements rust-lang#89077 due that PR being stagnant for 4 months. I am fine with closing this in favor of that one if the author revisits it. If so, I'd like to see that PR have the docs link to the `$Int`'s constants.
    Dylan-DPC committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    d58c69a View commit details
    Browse the repository at this point in the history
  2. Rollup merge of rust-lang#94356 - Thomasdezeeuw:stabilize_unix_socket…

    …_creation, r=dtolnay
    
    Rename unix::net::SocketAddr::from_path to from_pathname and stabilize it
    
    Stabilizes `unix_socket_creation`.
    
    Closes rust-lang#93423
    r? `@m-ou-se`
    Dylan-DPC committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    ab85165 View commit details
    Browse the repository at this point in the history
  3. Rollup merge of rust-lang#94765 - m-ou-se:is-some-and, r=Dylan-DPC

    Rename is_{some,ok,err}_with to is_{some,ok,err}_and.
    
    This renames `is_{some,ok,err}_with` to `is_{some,ok,err}_and`. This was discussed on the [tracking issue](rust-lang#93050).
    Dylan-DPC committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    6d66020 View commit details
    Browse the repository at this point in the history
  4. Rollup merge of rust-lang#94819 - jonhoo:configure-empty-list, r=Mark…

    …-Simulacrum
    
    configure: don't serialize empty array elements
    
    Before this change:
    
        $ ./configure --codegen-backends=
        [..]
        $ grep -P '^codegen-backends' config.toml
        codegen-backends = ['']
    
    After this change:
    
        $ ./configure --codegen-backends=
        [..]
        $ grep -P '^codegen-backends' config.toml
        codegen-backends = []
    Dylan-DPC committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    bb8274a View commit details
    Browse the repository at this point in the history
  5. Rollup merge of rust-lang#94826 - allgoewer:fix-retain-documentation,…

    … r=yaahc
    
    Improve doc wording for retain on some collections
    
    I found the documentation wording on the various retain methods on many collections to be unusual.
    I tried to invert the relation by switching `such that` with `for which` .
    Dylan-DPC committed Mar 11, 2022
    Configuration menu
    Copy the full SHA
    f97a1c6 View commit details
    Browse the repository at this point in the history