-
-
Notifications
You must be signed in to change notification settings - Fork 174
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
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.98
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: dtolnay/anyhow
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.99
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 10 commits
- 7 files changed
- 1 contributor
Commits on May 1, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 219d163 - Browse repository at this point
Copy the full SHA 219d163View commit details
Commits on May 7, 2025
-
Configuration menu - View commit details
-
Copy full SHA for d04c999 - Browse repository at this point
Copy the full SHA d04c999View commit details
Commits on May 17, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 11f0e81 - Browse repository at this point
Copy the full SHA 11f0e81View commit details
Commits on Jun 6, 2025
-
Ignore mismatched_lifetime_syntaxes lint
warning: lifetime flowing from input to output with different syntax can be confusing --> src/error.rs:489:18 | 489 | pub fn chain(&self) -> Chain { | ^^^^^ ----- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 489 | pub fn chain(&self) -> Chain<'_> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/error.rs:1082:14 | 1082 | fn erase(&self) -> Ref<ErrorImpl> { | ^^^^^ -------------- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 1082 | fn erase(&self) -> Ref<'_, ErrorImpl> { | +++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/error.rs:1091:38 | 1091 | pub(crate) unsafe fn error(this: Ref<Self>) -> &(dyn StdError + Send + Sync + 'static) { | ^^^^^^^^^ --------------------------------------- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 1091 | pub(crate) unsafe fn error(this: Ref<'_, Self>) -> &(dyn StdError + Send + Sync + 'static) { | +++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/error.rs:1098:42 | 1098 | pub(crate) unsafe fn error_mut(this: Mut<Self>) -> &mut (dyn StdError + Send + Sync + 'static) { | ^^^^^^^^^ ------------------------------------------- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 1098 | pub(crate) unsafe fn error_mut(this: Mut<'_, Self>) -> &mut (dyn StdError + Send + Sync + 'static) { | +++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/error.rs:1114:42 | 1114 | pub(crate) unsafe fn backtrace(this: Ref<Self>) -> &Backtrace { | ^^^^^^^^^ ---------- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 1114 | pub(crate) unsafe fn backtrace(this: Ref<'_, Self>) -> &Backtrace { | +++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/ptr.rs:48:19 | 48 | pub fn by_ref(&self) -> Ref<T> { | ^^^^^ ------ the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 48 | pub fn by_ref(&self) -> Ref<'_, T> { | +++ warning: lifetime flowing from input to output with different syntax can be confusing --> src/ptr.rs:55:19 | 55 | pub fn by_mut(&mut self) -> Mut<T> { | ^^^^^^^^^ ------ the lifetime gets resolved as `'_` | | | this lifetime flows to the output | help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 55 | pub fn by_mut(&mut self) -> Mut<'_, T> { | +++Configuration menu - View commit details
-
Copy full SHA for 37224e3 - Browse repository at this point
Copy the full SHA 37224e3View commit details
Commits on Jun 18, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 6929572 - Browse repository at this point
Copy the full SHA 6929572View commit details
Commits on Jun 30, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 1d7ef1d - Browse repository at this point
Copy the full SHA 1d7ef1dView commit details
Commits on Aug 8, 2025
-
Revert "Pin nightly toolchain used for miri job"
This reverts commit 11f0e81.
Configuration menu - View commit details
-
Copy full SHA for f5e145c - Browse repository at this point
Copy the full SHA f5e145cView commit details
Commits on Aug 11, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 8cf66f7 - Browse repository at this point
Copy the full SHA 8cf66f7View commit details -
Merge pull request #420 from dtolnay/enotempty
Allow build-script cleanup failure with NFSv3 output directory to be non-fatal
Configuration menu - View commit details
-
Copy full SHA for 2c64c15 - Browse repository at this point
Copy the full SHA 2c64c15View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2b963a - Browse repository at this point
Copy the full SHA f2b963aView commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 1.0.98...1.0.99