-
-
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.56
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.57
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 10 commits
- 15 files changed
- 2 contributors
Commits on Jan 31, 2024
-
Configuration menu - View commit details
-
Copy full SHA for c7c7547 - Browse repository at this point
Copy the full SHA c7c7547View commit details
Commits on Feb 8, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 0717de3 - Browse repository at this point
Copy the full SHA 0717de3View commit details
Commits on Feb 9, 2024
-
Optimize simple literals for Display::fmt
Compiler is unable to generate as efficient code for `write!(f, "text")` as it does for `f.write_str("text")`. This PR checks if the `#[error("text")]` uses a simple string literal without the `{` and `}` characters, and without arguments, and uses `write_str` if so.
Configuration menu - View commit details
-
Copy full SHA for d7e738e - Browse repository at this point
Copy the full SHA d7e738eView commit details -
Configuration menu - View commit details
-
Copy full SHA for cd79876 - Browse repository at this point
Copy the full SHA cd79876View commit details
Commits on Feb 11, 2024
-
Merge pull request #286 from nyurik/litstr
Optimize performance for string literals in Display::fmt
Configuration menu - View commit details
-
Copy full SHA for 097251d - Browse repository at this point
Copy the full SHA 097251dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d09c418 - Browse repository at this point
Copy the full SHA d09c418View commit details -
Ignore needless_raw_string_hashes pedantic clippy lint in test
warning: unnecessary hashes around raw string literal --> tests/test_display.rs:354:12 | 354 | assert(r#"raw brace left {"#, Error::BraceLeft); | ^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes = note: `-W clippy::needless-raw-string-hashes` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::needless_raw_string_hashes)]` help: remove all the hashes around the string literal | 354 - assert(r#"raw brace left {"#, Error::BraceLeft); 354 + assert(r"raw brace left {", Error::BraceLeft); | warning: unnecessary hashes around raw string literal --> tests/test_display.rs:355:12 | 355 | assert(r#"raw brace left 2 \x7B"#, Error::BraceLeft2); | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 355 - assert(r#"raw brace left 2 \x7B"#, Error::BraceLeft2); 355 + assert(r"raw brace left 2 \x7B", Error::BraceLeft2); | warning: unnecessary hashes around raw string literal --> tests/test_display.rs:356:12 | 356 | assert(r#"raw brace right }"#, Error::BraceRight); | ^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 356 - assert(r#"raw brace right }"#, Error::BraceRight); 356 + assert(r"raw brace right }", Error::BraceRight); | warning: unnecessary hashes around raw string literal --> tests/test_display.rs:357:12 | 357 | assert(r#"raw brace right 2 \x7D"#, Error::BraceRight2); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_raw_string_hashes help: remove all the hashes around the string literal | 357 - assert(r#"raw brace right 2 \x7D"#, Error::BraceRight2); 357 + assert(r"raw brace right 2 \x7D", Error::BraceRight2); |
Configuration menu - View commit details
-
Copy full SHA for d43b759 - Browse repository at this point
Copy the full SHA d43b759View commit details -
Configuration menu - View commit details
-
Copy full SHA for f790bee - Browse repository at this point
Copy the full SHA f790beeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8a5c4d1 - Browse repository at this point
Copy the full SHA 8a5c4d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1d106b1 - Browse repository at this point
Copy the full SHA 1d106b1View 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.56...1.0.57