- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 170
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/thiserror
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.0.30
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: dtolnay/thiserror
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.0.31
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 18 commits
- 19 files changed
- 1 contributor
Commits on Oct 17, 2021
-
Configuration menu - View commit details
-
Copy full SHA for b743d8f - Browse repository at this point
Copy the full SHA b743d8fView commit details
Commits on Nov 17, 2021
-
Install newest build of cargo-outdated
The old version available by default in the GitHub Actions image fails with: thread 'main' panicked at 'package cache lock is not currently held, Cargo forgot to call `acquire_package_cache_lock` before we got to this stack frame', /usr/share/rust/.cargo/registry/src/github.com-1ecc6299db9ec823/cargo-0.57.0/src/cargo/util/config/mod.rs:1542:9 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
Configuration menu - View commit details
-
Copy full SHA for e86c024 - Browse repository at this point
Copy the full SHA e86c024View commit details
Commits on Nov 20, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 48bbdff - Browse repository at this point
Copy the full SHA 48bbdffView commit details
Commits on Dec 8, 2021
-
Ignore cast_lossless Clippy pedantic lint
error: casting `bool` to `usize` is more cleanly stated with `usize::from(_)` --> impl/src/valid.rs:183:31 | 183 | if fields.len() > 1 + has_backtrace as usize { | ^^^^^^^^^^^^^^^^^^^^^^ help: try: `usize::from(has_backtrace)` | = note: `-D clippy::cast-lossless` implied by `-D clippy::pedantic` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless
Configuration menu - View commit details
-
Copy full SHA for d7664d5 - Browse repository at this point
Copy the full SHA d7664d5View commit details -
Ignore iter_cloned_collect Clippy lint in test
error: called `iter().copied().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable --> tests/test_expr.rs:18:30 | 18 | #[error("#error {}", (.0).iter().copied().collect::<Vec<_>>().join(" "))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()`
Configuration menu - View commit details
-
Copy full SHA for 5a03b0a - Browse repository at this point
Copy the full SHA 5a03b0aView commit details -
Ignore needless_late_init Clippy lint in test
error: unneeded late initalization --> tests/test_generics.rs:90:5 | 90 | let mut instance: EnumCompound<DisplayOnly, DebugOnly, NoFormat>; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_late_init help: declare `instance` here | 92 | let mut instance: EnumCompound<DisplayOnly, DebugOnly, NoFormat> = EnumCompound::DisplayDebug(DisplayOnly, DebugOnly); | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Configuration menu - View commit details
-
Copy full SHA for 604e47c - Browse repository at this point
Copy the full SHA 604e47cView commit details
Commits on Dec 18, 2021
-
Ignore return_self_not_must_use clippy lint
error: missing `#[must_use]` attribute on a method returning `Self` --> src/display.rs:5:5 | 5 | fn as_display(&self) -> Self; | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `-D clippy::return-self-not-must-use` implied by `-D clippy::all` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#return_self_not_must_use
Configuration menu - View commit details
-
Copy full SHA for 7966eb3 - Browse repository at this point
Copy the full SHA 7966eb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8602ca3 - Browse repository at this point
Copy the full SHA 8602ca3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c4d7c2b - Browse repository at this point
Copy the full SHA c4d7c2bView commit details -
Merge pull request #164 from dtolnay/frombacktrace
Fix miscounting fields when from and backtrace are same field
Configuration menu - View commit details
-
Copy full SHA for 320d70f - Browse repository at this point
Copy the full SHA 320d70fView commit details
Commits on Jan 1, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d2e2ad1 - Browse repository at this point
Copy the full SHA d2e2ad1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 91333fa - Browse repository at this point
Copy the full SHA 91333faView commit details
Commits on Jan 15, 2022
-
Ignore wrong_self_convention clippy lint
error: methods called `from_*` usually take no `self` --> impl/src/prop.rs:5:30 | 5 | pub(crate) fn from_field(&self) -> Option<&Field> { | ^^^^^ | = note: `-D clippy::wrong-self-convention` implied by `-D clippy::all` = help: consider choosing a less ambiguous name = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention error: methods called `from_*` usually take no `self` --> impl/src/prop.rs:51:30 | 51 | pub(crate) fn from_field(&self) -> Option<&Field> { | ^^^^^ | = help: consider choosing a less ambiguous name = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
Configuration menu - View commit details
-
Copy full SHA for 21c2690 - Browse repository at this point
Copy the full SHA 21c2690View commit details
Commits on Apr 24, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 625d349 - Browse repository at this point
Copy the full SHA 625d349View commit details -
Remove clippy deny attributes from test suite
These were superseded by the clippy invocation made in our CI workflow: run: cargo clippy --tests -- -Dclippy::all -Dclippy::pedantic
Configuration menu - View commit details
-
Copy full SHA for dd9206c - Browse repository at this point
Copy the full SHA dd9206cView commit details
Commits on Apr 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 244edc8 - Browse repository at this point
Copy the full SHA 244edc8View commit details
Commits on Apr 29, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2a29fda - Browse repository at this point
Copy the full SHA 2a29fdaView commit details
Commits on Apr 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for cbe8212 - Browse repository at this point
Copy the full SHA cbe8212View commit details
There are no files selected for viewing