-
-
Notifications
You must be signed in to change notification settings - Fork 191
Comparing changes
Open a pull request
base repository: dtolnay/thiserror
base: 2.0.12
head repository: dtolnay/thiserror
compare: 2.0.14
- 18 commits
- 10 files changed
- 2 contributors
Commits on May 3, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 89fb343 - Browse repository at this point
Copy the full SHA 89fb343View commit details
Commits on May 17, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 9abad43 - Browse repository at this point
Copy the full SHA 9abad43View 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 --> impl/src/attr.rs:69:19 | 69 | pub fn get(input: &[Attribute]) -> Result<Attrs> { | ^^^^^^^^^^^^ ----- 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 | 69 | pub fn get(input: &[Attribute]) -> Result<Attrs<'_>> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> impl/src/prop.rs:7:30 | 7 | pub(crate) fn from_field(&self) -> Option<&Field> { | ^^^^^ ------ | | || | | |the lifetimes get resolved as `'_` | | the lifetimes get 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 | 7 | pub(crate) fn from_field(&self) -> Option<&Field<'_>> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> impl/src/prop.rs:11:32 | 11 | pub(crate) fn source_field(&self) -> Option<&Field> { | ^^^^^ ------ | | || | | |the lifetimes get resolved as `'_` | | the lifetimes get 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 | 11 | pub(crate) fn source_field(&self) -> Option<&Field<'_>> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> impl/src/prop.rs:15:35 | 15 | pub(crate) fn backtrace_field(&self) -> Option<&Field> { | ^^^^^ ------ | | || | | |the lifetimes get resolved as `'_` | | the lifetimes get 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 | 15 | pub(crate) fn backtrace_field(&self) -> Option<&Field<'_>> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> impl/src/prop.rs:19:44 | 19 | pub(crate) fn distinct_backtrace_field(&self) -> Option<&Field> { | ^^^^^ ------ | | || | | |the lifetimes get resolved as `'_` | | the lifetimes get 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 | 19 | pub(crate) fn distinct_backtrace_field(&self) -> Option<&Field<'_>> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> impl/src/prop.rs:54:30 | 54 | pub(crate) fn from_field(&self) -> Option<&Field> { | ^^^^^ ------ | | || | | |the lifetimes get resolved as `'_` | | the lifetimes get 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 | 54 | pub(crate) fn from_field(&self) -> Option<&Field<'_>> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> impl/src/prop.rs:58:32 | 58 | pub(crate) fn source_field(&self) -> Option<&Field> { | ^^^^^ ------ | | || | | |the lifetimes get resolved as `'_` | | the lifetimes get 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 | 58 | pub(crate) fn source_field(&self) -> Option<&Field<'_>> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> impl/src/prop.rs:62:35 | 62 | pub(crate) fn backtrace_field(&self) -> Option<&Field> { | ^^^^^ ------ | | || | | |the lifetimes get resolved as `'_` | | the lifetimes get 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 | 62 | pub(crate) fn backtrace_field(&self) -> Option<&Field<'_>> { | ++++ warning: lifetime flowing from input to output with different syntax can be confusing --> impl/src/prop.rs:66:44 | 66 | pub(crate) fn distinct_backtrace_field(&self) -> Option<&Field> { | ^^^^^ ------ | | || | | |the lifetimes get resolved as `'_` | | the lifetimes get 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 | 66 | pub(crate) fn distinct_backtrace_field(&self) -> Option<&Field<'_>> { | ++++
Configuration menu - View commit details
-
Copy full SHA for 25f8ee6 - Browse repository at this point
Copy the full SHA 25f8ee6View commit details
Commits on Jun 18, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 54562ac - Browse repository at this point
Copy the full SHA 54562acView commit details
Commits on Jun 22, 2025
-
Resolve dead_code warning in test
warning: enum `DeprecatedFrom` is never used --> tests/test_lints.rs:79:14 | 79 | pub enum DeprecatedFrom { | ^^^^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
Configuration menu - View commit details
-
Copy full SHA for 93caf1a - Browse repository at this point
Copy the full SHA 93caf1aView commit details
Commits on Jun 23, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 147f3a5 - Browse repository at this point
Copy the full SHA 147f3a5View commit details
Commits on Jul 14, 2025
-
Ignore new dead code warning from rustc nightly-2025-07-14
warning: struct `Placeholder` is never constructed --> src/display.rs:63:16 | 63 | pub struct Placeholder; | ^^^^^^^^^^^ | = note: `#[warn(dead_code)]` on by default
Configuration menu - View commit details
-
Copy full SHA for f36c540 - Browse repository at this point
Copy the full SHA f36c540View commit details -
Merge pull request #423 from dtolnay/deadplaceholder
Ignore new dead code warning from rustc nightly-2025-07-14
Configuration menu - View commit details
-
Copy full SHA for 6c1cc96 - Browse repository at this point
Copy the full SHA 6c1cc96View commit details
Commits on Jul 30, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 7a5fbc6 - Browse repository at this point
Copy the full SHA 7a5fbc6View commit details
Commits on Aug 8, 2025
-
Revert "Pin nightly toolchain used for miri job"
This reverts commit 9abad43.
Configuration menu - View commit details
-
Copy full SHA for f301423 - Browse repository at this point
Copy the full SHA f301423View commit details
Commits on Aug 11, 2025
-
Especially for less used items like `source()` and `provide()` it can be very useful to click through to see what they do. I've also added links to some more items, but not all. I kept it to one link per item per block of text, to prevent cluttering the text.
Configuration menu - View commit details
-
Copy full SHA for f1eb081 - Browse repository at this point
Copy the full SHA f1eb081View commit details -
Merge pull request #425 from Kriskras99/feat/doc_links
Add links to more items
Configuration menu - View commit details
-
Copy full SHA for 0f94e99 - Browse repository at this point
Copy the full SHA 0f94e99View commit details -
Configuration menu - View commit details
-
Copy full SHA for aee87e5 - Browse repository at this point
Copy the full SHA aee87e5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 89872e3 - Browse repository at this point
Copy the full SHA 89872e3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 61f28da - Browse repository at this point
Copy the full SHA 61f28daView commit details -
Configuration menu - View commit details
-
Copy full SHA for f00ebc5 - Browse repository at this point
Copy the full SHA f00ebc5View commit details -
Merge pull request #426 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 a2aa6d7 - Browse repository at this point
Copy the full SHA a2aa6d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for eea6799 - Browse repository at this point
Copy the full SHA eea6799View commit details
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 2.0.12...2.0.14