8000 Comparing 1.0.89...1.0.92 · dtolnay/anyhow · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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.89
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.92
Choose a head ref
  • 12 commits
  • 7 files changed
  • 1 contributor

Commits on Sep 27, 2024

  1. Resolve used_underscore_items pedantic clippy lint

        warning: used underscore-prefixed item
           --> src/backtrace.rs:410:5
            |
        410 |     _assert::<Backtrace>();
            |     ^^^^^^^^^^^^^^^^^^^^^^
            |
        note: item is defined here
           --> src/backtrace.rs:409:5
            |
        409 |     fn _assert<T: Send + Sync>() {}
            |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#used_underscore_items
            = note: `-W clippy::used-underscore-items` implied by `-W clippy::pedantic`
            = help: to override `-W clippy::pedantic` add `#[allow(clippy::used_underscore_items)]`
    dtolnay committed Sep 27, 2024
    Configuration menu
    Copy the full SHA
    be64707 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2024

  1. Ignore needless_lifetimes 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#needless_lifetimes
           = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all`
           = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]`
        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#needless_lifetimes
        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#needless_lifetimes
        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#needless_lifetimes
        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#needless_lifetimes
        help: elide the lifetimes
            |
        186 - impl<'a, T> Mut<'a, T> {
        186 + impl<T> Mut<'_, T> {
            |
    dtolnay committed Oct 6, 2024
    Configuration menu
    Copy the full SHA
    8ce4560 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. Configuration menu
    Copy the full SHA
    0f74169 View commit details
    Browse the repository at this point in the history
  2. Release 1.0.90

    dtolnay committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    a0b868a View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

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

    Clean up dep-info files from OUT_DIR
    dtolnay authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    4986853 View commit details
    Browse the repository at this point in the history
  3. Release 1.0.91

    dtolnay committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    6c52daa View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. Configuration menu
    Copy the full SHA
    7d1a8f9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1e7e9fe View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fcf2ef8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #390 from dtolnay/rawaddr

    Add support for raw addr syntax
    dtolnay authored Nov 1, 2024
    Configuration menu
    Copy the full SHA
    a16252b View commit details
    Browse the repository at this point in the history
  5. Release 1.0.92

    dtolnay committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    fd03a8e View commit details
    Browse the repository at this point in the history
Loading
0