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

Commits on Feb 11, 2023

  1. Ignore extra_unused_type_parameters clippy lint in test

        error: type parameter goes unused in function definition
           --> src/backtrace.rs:399:15
            |
        399 |     fn _assert<T: Send + Sync>() {}
            |               ^^^^^^^^^^^^^^^^
            |
            = help: consider removing the parameter
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
            = note: `-D clippy::extra-unused-type-parameters` implied by `-D clippy::all`
    
        error: type parameter goes unused in function definition
         --> tests/test_autotrait.rs:5:19
          |
        5 |     fn assert_send<T: Send>() {}
          |                   ^^^^^^^^^
          |
          = help: consider removing the parameter
          = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
    
        error: type parameter goes unused in function definition
          --> tests/test_autotrait.rs:11:19
           |
        11 |     fn assert_sync<T: Sync>() {}
           |                   ^^^^^^^^^
           |
           = help: consider removing the parameter
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
    
        error: type parameter goes unused in function definition
           --> tests/test_ensure.rs:353:10
            |
        353 |     fn g<T, const I: isize>() {}
            |          ^^
            |
            = help: consider removing the parameter
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
    
        error: type parameter goes unused in function definition
          --> tests/test_repr.rs:20:14
           |
        20 |     fn assert<E: Unpin + Send + Sync + 'static>() {}
           |              ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
           |
           = help: consider removing the parameter
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_type_parameters
    dtolnay committed Feb 11, 2023
    Configuration menu
    Copy the full SHA
    e0292fe View commit details
    Browse the repository at this point in the history

Commits on Feb 12, 2023

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

Commits on Feb 19, 2023

  1. Configuration menu
    Copy the full SHA
    4804a78 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    80d4c8d View commit details
    Browse the repository at this point in the history

Commits on Feb 20, 2023

  1. Configuration menu
    Copy the full SHA
    b249287 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #298 from dtolnay/constblock

    Support const block syntax in ensure! macro
    dtolnay committed Feb 20, 2023
    Configuration menu
    Copy the full SHA
    2c2803f View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2023

  1. Ignore let_underscore_untyped pedantic clippy lint

        error: non-binding `let` without a type annotation
           --> src/error.rs:618:5
            |
        618 |     let _ = target;
            |     ^^^^^^^^^^^^^^^
            |
            = help: consider adding a type annotation or removing the `let` keyword
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
            = note: `-D clippy::let-underscore-untyped` implied by `-D clippy::pedantic`
    
        error: non-binding `let` without a type annotation
          --> tests/test_backtrace.rs:12:5
           |
        12 |     let _ = error.backtrace();
           |     ^^^^^^^^^^^^^^^^^^^^^^^^^^
           |
           = help: consider adding a type annotation or removing the `let` keyword
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
           = note: `-D clippy::let-underscore-untyped` implied by `-D clippy::pedantic`
    
        error: non-binding `let` without a type annotation
          --> tests/test_ensure.rs:35:9
           |
        35 |         let _ = rhs;
           |         ^^^^^^^^^^^^
           |
           = help: consider adding a type annotation or removing the `let` keyword
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_underscore_untyped
           = note: `-D clippy::let-underscore-untyped` implied by `-D clippy::pedantic`
    dtolnay committed Feb 27, 2023
    Configuration menu
    Copy the full SHA
    d30b027 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    553ed38 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2023

  1. Update to syn 2

    dtolnay committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    4a6b90c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #302 from dtolnay/syn

    Update to syn 2
    dtolnay committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    10f5994 View commit details
    Browse the repository at this point in the history
  3. Release 1.0.70

    dtolnay committed Mar 18, 2023
    Configuration menu
    Copy the full SHA
    e4db1f9 View commit details
    Browse the repository at this point in the history
Loading