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.96
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.98
Choose a head ref
  • 10 commits
  • 9 files changed
  • 1 contributor

Commits on Feb 20, 2025

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

Commits on Mar 3, 2025

  1. Ignore elidable_lifetime_names pedantic clippy lint

        warning: the following explicit lifetimes could be elided: 'a
          --> src/ptr.rs:72:6
           |
        72 | impl<'a, T> Copy for Ref<'a, T> where T: ?Sized {}
           |      ^^                  ^^
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
           = note: `-W clippy::elidable-lifetime-names` implied by `-W clippy::pedantic`
           = help: to override `-W clippy::pedantic` add `#[allow(clippy::elidable_lifetime_names)]`
        help: elide the lifetimes
           |
        72 - impl<'a, T> Copy for Ref<'a, T> where T: ?Sized {}
        72 + impl<T> Copy for Ref<'_, T> where T: ?Sized {}
           |
    
        warning: the following explicit lifetimes could be elided: 'a
          --> src/ptr.rs:74:6
           |
        74 | impl<'a, T> Clone for Ref<'a, T>
           |      ^^                   ^^
           |
           = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
        help: elide the lifetimes
           |
        74 - impl<'a, T> Clone for Ref<'a, T>
        74 + impl<T> Clone for Ref<'_, T>
           |
    
        warning: the following explicit lifetimes could be elided: 'a
           --> src/ptr.rs:136:6
            |
        136 | impl<'a, T> Copy for Mut<'a, T> where T: ?Sized {}
            |      ^^                  ^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
        help: elide the lifetimes
            |
        136 - impl<'a, T> Copy for Mut<'a, T> where T: ?Sized {}
        136 + impl<T> Copy for Mut<'_, T> where T: ?Sized {}
            |
    
        warning: the following explicit lifetimes could be elided: 'a
           --> src/ptr.rs:138:6
            |
        138 | impl<'a, T> Clone for Mut<'a, T>
            |      ^^                   ^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
        help: elide the lifetimes
            |
        138 - impl<'a, T> Clone for Mut<'a, T>
        138 + impl<T> Clone for Mut<'_, T>
            |
    
        warning: the following explicit lifetimes could be elided: 'a
           --> src/ptr.rs:186:6
            |
        186 | impl<'a, T> Mut<'a, T> {
            |      ^^         ^^
            |
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#elidable_lifetime_names
        help: elide the lifetimes
            |
        186 - impl<'a, T> Mut<'a, T> {
        186 + impl<T> Mut<'_, T> {
            |
    dtolnay committed Mar 3, 2025
    Configuration menu
    Copy the full SHA
    c7fca9b View commit details
    Browse the repository at this point in the history
  2. Release 1.0.97

    dtolnay committed Mar 3, 2025
    Configuration menu
    Copy the full SHA
    bfb89ef View commit details
    Browse the repository at this point in the history

Commits on Apr 13, 2025

  1. Configuration menu
    Copy the full SHA
    02aa6b6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #414 from dtolnay/nightly

    Make all nightly go through the module that was probed
    dtolnay authored Apr 13, 2025
    Configuration menu
    Copy the full SHA
    213a9c2 View commit details
    Browse the repository at this point in the history

Commits on Apr 14, 2025

  1. Configuration menu
    Copy the full SHA
    2244db8 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #416 from dtolnay/oldnostd

    Omit unused object_boxed from vtable in old no-std rustc
    dtolnay authored Apr 14, 2025
    Configuration menu
    Copy the full SHA
    29f2edd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e1a2017 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #415 from dtolnay/intodyn

    Add 2 different conversions to `Box<dyn Error + Send + Sync + 'static>`
    dtolnay authored Apr 14, 2025
    Configuration menu
    Copy the full SHA
    cbc1ad2 View commit details
    Browse the repository at this point in the history
  5. Release 1.0.98

    dtolnay committed Apr 14, 2025
    Configuration menu
    Copy the full SHA
    709fe86 View commit details
    Browse the repository at this point in the history
Loading