Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: dtolnay/async-trait
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.79
Choose a base ref
...
head repository: dtolnay/async-trait
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.1.80
Choose a head ref
  • 8 commits
  • 7 files changed
  • 2 contributors

Commits on Mar 26, 2024

  1. Explicitly install a Rust toolchain for cargo-outdated job

    Debugging a recent cargo-outdated bug, it would have been nice not to
    wonder whether a rustc version change in GitHub's runner image was a
    contributing factor.
    dtolnay committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    4f0b72e View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2024

  1. Fix unreachable code warning for functions that return !

    The generated code for function bodies produces an `unreachable_code`
    warning if the function has a `!` return type.
    
    The offending bit is:
    ```rust
    if let Some(__ret) == None::<!> {
      // unreachable
    }
    ```
    
    This PR fixes the warning by simply adding `#[allow(unreachable_code)]`
    to the return statement. It also adds a test for it.
    
    This problem can only be triggered on nightly with the `never_type`
    feature enabled, but it is easy to fix here.
    de-vri-es committed Apr 11, 2024
    Configuration menu
    Copy the full SHA
    c8d958d View commit details
    Browse the repository at this point in the history
  2. Merge pull request #265 from de-vri-es/fix-unreachable-code-warning

    Fix unreachable code warning for functions that return `!`
    dtolnay authored Apr 11, 2024
    Configuration menu
    Copy the full SHA
    b683da8 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b64d041 View commit details
    Browse the repository at this point in the history
  4. Build script no longer looks at $DOCS_RS

    Since #254.
    dtolnay committed Apr 11, 2024
    Configuration menu
    Copy the full SHA
    22d017e View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    83a5422 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    10b5c99 View commit details
    Browse the repository at this point in the history
  7. Release 0.1.80

    dtolnay committed Apr 11, 2024
    Configuration menu
    Copy the full SHA
    d528b5a View commit details
    Browse the repository at this point in the history
Loading