-
-
Notifications
You must be signed in to change notification settings - Fork 161
Comparing changes
Open a pull request
base repository: dtolnay/anyhow
base: 1.0.95
head repository: dtolnay/anyhow
compare: 1.0.97
- 14 commits
- 7 files changed
- 1 contributor
Commits on Dec 27, 2024
-
Ignore literal_string_with_formatting_args clippy lint in test
warning: this looks like a formatting argument but it is not part of a formatting macro --> tests/test_ensure.rs:505:44 | 505 | "Condition failed: `\"\" == format!(\"{:#?}\", point)`", | ^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#literal_string_with_formatting_args = note: `-W clippy::literal-string-with-formatting-args` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::literal_string_with_formatting_args)]`
Configuration menu - View commit details
-
Copy full SHA for 9c0fb8b - Browse repository at this point
Copy the full SHA 9c0fb8bView commit details
Commits on Jan 2, 2025
-
Configuration menu - View commit details
-
Copy full SHA for af0937e - Browse repository at this point
Copy the full SHA af0937eView commit details
Commits on Jan 11, 2025
-
Ignore double_ended_iterator_last clippy lint
warning: called `Iterator::last` on a `DoubleEndedIterator`; this will needlessly iterate the entire iterator --> src/error.rs:482:22 | 482 | self.chain().last().unwrap() | ^^^^^^ help: try: `next_back()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#double_ended_iterator_last = note: `-W clippy::double-ended-iterator-last` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::double_ended_iterator_last)]`
Configuration menu - View commit details
-
Copy full SHA for 4d71a84 - Browse repository at this point
Copy the full SHA 4d71a84View commit details
Commits on Jan 16, 2025
-
Ignore missing_abi lint in nightly-2025-01-16
warning: extern declarations without an explicit ABI are deprecated --> tests/test_ensure.rs:617:43 | 617 | let test = || Ok(ensure!(extern_fn as extern fn() as usize * 0 != 0)); | ^^^^^^ help: explicitly specify the C ABI: `extern "C"` | = note: `#[warn(missing_abi)]` on by default
Configuration menu - View commit details
-
Copy full SHA for 51a173e - Browse repository at this point
Copy the full SHA 51a173eView commit details -
Merge pull request #404 from dtolnay/missingabi
Ignore missing_abi lint in nightly-2025-01-16
Configuration menu - View commit details
-
Copy full SHA for 8891ce3 - Browse repository at this point
Copy the full SHA 8891ce3View commit details
Commits on Jan 23, 2025
-
Configuration menu - View commit details
-
Copy full SHA for b880dd0 - Browse repository at this point
Copy the full SHA b880dd0View commit details -
Remove **/*.rs.bk from project-specific gitignore
Cargo stopped generating this in its project template 5 years ago. It would belong in a global gitignore instead.
Configuration menu - View commit details
-
Copy full SHA for 3e40975 - Browse repository at this point
Copy the full SHA 3e40975View commit details -
Configuration menu - View commit details
-
Copy full SHA for d71c806 - Browse repository at this point
Copy the full SHA d71c806View commit details
Commits on Feb 10, 2025
-
Unset doc-scrape-examples for lib target
False is the default value since Cargo PR 11499.
Configuration menu - View commit details
-
Copy full SHA for 1cff785 - Browse repository at this point
Copy the full SHA 1cff785View commit details
Commits on Feb 20, 2025
-
Configuration menu - View commit details
-
Copy full SHA for bc33c24 - Browse repository at this point
Copy the full SHA bc33c24View commit details -
Configuration menu - View commit details
-
Copy full SHA for f0aa0d3 - Browse repository at this point
Copy the full SHA f0aa0d3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 427c0bb - Browse repository at this point
Copy the full SHA 427c0bbView commit details
Commits on Mar 3, 2025
-
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> { |
Configuration menu - View commit details
-
Copy full SHA for c7fca9b - Browse repository at this point
Copy the full SHA c7fca9bView commit details -
Configuration menu - View commit details
-
Copy full SHA for bfb89ef - Browse repository at this point
Copy the full SHA bfb89efView 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 1.0.95...1.0.97