-
-
Notifications
You must be signed in to change notification settings - Fork 170
Comparing changes
Open a pull request
base repository: dtolnay/thiserror
base: 1.0.58
head repository: dtolnay/thiserror
compare: 1.0.61
- 16 commits
- 16 files changed
- 2 contributors
Commits on Mar 25, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ba33438 - Browse repository at this point
Copy the full SHA ba33438View commit details
Commits on Mar 26, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 488d52f - Browse repository at this point
Copy the full SHA 488d52fView commit details -
Merge pull request #293 from dtolnay/workspacewrapper
Apply RUSTC_WORKSPACE_WRAPPER
Configuration menu - View commit details
-
Copy full SHA for 6969595 - Browse repository at this point
Copy the full SHA 6969595View commit details -
Explicitly install a Rust toolchain for cargo-outdated job
Debugging a recent cargo-outdated bug, it would have been nice not to wonder whether a rustc version change in GitHub's runner image was a contributing factor.
Configuration menu - View commit details
-
Copy full SHA for c8c804c - Browse repository at this point
Copy the full SHA c8c804cView commit details
Commits on Apr 8, 2024
-
Revert "Temporarily disable miri on doctests"
This reverts commit ba33438.
Configuration menu - View commit details
-
Copy full SHA for 508ece8 - Browse repository at this point
Copy the full SHA 508ece8View commit details
Commits on Apr 20, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f3fbd99 - Browse repository at this point
Copy the full SHA f3fbd99View commit details -
Merge pull request #297 from dtolnay/traitident
Implement ToTokens without reliance on {:?}
Configuration menu - View commit details
-
Copy full SHA for af477ec - Browse repository at this point
Copy the full SHA af477ecView commit details -
Configuration menu - View commit details
-
Copy full SHA for e7ad85e - Browse repository at this point
Copy the full SHA e7ad85eView commit details
Commits on May 7, 2024
-
Resolve unexpected_cfgs warning
warning: unexpected `cfg` condition name: `error_generic_member_access` --> src/lib.rs:238:13 | 238 | #![cfg_attr(error_generic_member_access, feature(error_generic_member_access))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, `windows` = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(error_generic_member_access)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> src/lib.rs:240:11 | 240 | #[cfg(all(thiserror_nightly_testing, not(error_generic_member_access)))] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `error_generic_member_access` --> src/lib.rs:240:42 | 240 | #[cfg(all(thiserror_nightly_testing, not(error_generic_member_access)))] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(error_generic_member_access)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `error_generic_member_access` --> src/lib.rs:245:7 | 245 | #[cfg(error_generic_member_access)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(error_generic_member_access)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `error_generic_member_access` --> src/lib.rs:257:11 | 257 | #[cfg(error_generic_member_access)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(error_generic_member_access)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_option.rs:1:13 | 1 | #![cfg_attr(thiserror_nightly_testing, feature(error_generic_member_access))] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, `windows` = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_option.rs:3:7 | 3 | #[cfg(thiserror_nightly_testing)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_option.rs:48:7 | 48 | #[cfg(thiserror_nightly_testing)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_backtrace.rs:1:13 | 1 | #![cfg_attr(thiserror_nightly_testing, feature(error_generic_member_access))] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, `windows` = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration = note: `#[warn(unexpected_cfgs)]` on by default warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_option.rs:104:16 | 104 | #[cfg_attr(not(thiserror_nightly_testing), ignore)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_backtrace.rs:9:7 | 9 | #[cfg(thiserror_nightly_testing)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_backtrace.rs:16:7 | 16 | #[cfg(thiserror_nightly_testing)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_backtrace.rs:150:7 | 150 | #[cfg(thiserror_nightly_testing)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration warning: unexpected `cfg` condition name: `thiserror_nightly_testing` --> tests/test_backtrace.rs:273:16 | 273 | #[cfg_attr(not(thiserror_nightly_testing), ignore)] | ^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: consider using a Cargo feature instead or adding `println!("cargo::rustc-check-cfg=cfg(thiserror_nightly_testing)");` to the top of the `build.rs` = note: see <https://doc.rust-lang.org/nightly/cargo/reference/build-scripts.html#rustc-check-cfg> for more information about checking conditional configuration
Configuration menu - View commit details
-
Copy full SHA for cf43d0c - Browse repository at this point
Copy the full SHA cf43d0cView commit details -
Merge pull request #298 from dtolnay/checkcfg
Resolve unexpected_cfgs warning
Configuration menu - View commit details
-
Copy full SHA for 0ccee7c - Browse repository at this point
Copy the full SHA 0ccee7cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 870d11b - Browse repository at this point
Copy the full SHA 870d11bView commit details
Commits on May 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7b6e35b - Browse repository at this point
Copy the full SHA 7b6e35bView commit details -
Configuration menu - View commit details
-
Copy full SHA for ce974bc - Browse repository at this point
Copy the full SHA ce974bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6b2b871 - Browse repository at this point
Copy the full SHA 6b2b871View commit details -
Configuration menu - View commit details
-
Copy full SHA for e3b1b91 - Browse repository at this point
Copy the full SHA e3b1b91View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c80163 - Browse repository at this point
Copy the full SHA 5c80163View 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.58...1.0.61