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/thiserror
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.57
Choose a base ref
...
head repository: dtolnay/thiserror
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.58
Choose a head ref
  • 5 commits
  • 7 files changed
  • 1 contributor

Commits on Mar 8, 2024

  1. Resolve assigning_clones clippy lint

        warning: assigning the result of `Clone::clone()` may be inefficient
          --> impl/src/ast.rs:85:21
           |
        85 |                     *display = attrs.display.clone();
           |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display.clone_from(&attrs.display)`
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
           = note: `#[warn(clippy::assigning_clones)]` on by default
    
        warning: assigning the result of `Clone::clone()` may be inefficient
           --> impl/src/expand.rs:158:9
            |
        158 |         display_implied_bounds = display.implied_bounds.clone();
            |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display_implied_bounds.clone_from(&display.implied_bounds)`
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
    
        warning: assigning the result of `Clone::clone()` may be inefficient
           --> impl/src/expand.rs:402:21
            |
        402 |                     display_implied_bounds = display.implied_bounds.clone();
            |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display_implied_bounds.clone_from(&display.implied_bounds)`
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
    dtolnay committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    f770921 View commit details
    Browse the repository at this point in the history
  2. Ignore mixed_attributes_style clippy lint

        warning: item has both inner and outer attributes
         --> tests/test_lints.rs:5:1
          |
        5 | / #[test]
        6 | | fn test_unused_qualifications() {
        7 | |     #![deny(unused_qualifications)]
          | |___________________________________^
          |
          = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mixed_attributes_style
          = note: `#[warn(clippy::mixed_attributes_style)]` on by default
    dtolnay committed Mar 8, 2024
    Configuration menu
    Copy the full SHA
    f55a5d2 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Configuration menu
    Copy the full SHA
    15a1d64 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #292 from dtolnay/deadcode

    Make compatible with -Dwarnings
    dtolnay authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    14be209 View commit details
    Browse the repository at this point in the history
  3. Release 1.0.58

    dtolnay committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    df8bffa View commit details
    Browse the repository at this point in the history
Loading