Commit graph

772 commits

Author SHA1 Message Date
David Tolnay
ab5b5e375b
Upload CI Cargo.lock for reproducing failures 2024-08-25 12:12:25 -07:00
David Tolnay
00b3c1405e
Work around new dead code warning in test
warning: struct `StructTransparentGeneric` is never constructed
       --> tests/test_generics.rs:161:12
        |
    161 | pub struct StructTransparentGeneric<E>(E);
        |            ^^^^^^^^^^^^^^^^^^^^^^^^
        |
        = note: `#[warn(dead_code)]` on by default
2024-07-31 12:25:52 -07:00
David Tolnay
915c75e8a3
Release 1.0.63 2024-07-17 12:09:02 -07:00
David Tolnay
3d5ec25464
Merge pull request #312 from dtolnay/backtracedoc
Update documentation of #[from] and #[backtrace] attributes
2024-07-17 12:07:28 -07:00
David Tolnay
de8a1e54d4
Update documentation of #[from] and #[backtrace] attributes 2024-07-17 12:04:21 -07:00
David Tolnay
0bf6e3dd78
Release 1.0.62 2024-07-11 16:31:35 -07:00
David Tolnay
4977932839
Merge pull request #310 from dtolnay/nestedtuple
Support `.0.0` nested tuple index
2024-07-11 16:31:05 -07:00
David Tolnay
40a7779b17
Support .0.0 nested tuple index 2024-07-11 16:27:20 -07:00
David Tolnay
f1ca210cc4
Add regression test for issue 309 2024-07-11 16:23:01 -07:00
David Tolnay
479744ec28
No need for dead code if struct fields are public 2024-06-07 19:38:42 -07:00
David Tolnay
4db08b10a3
Ignore warning on unused struct in test
warning: struct `OptSourceNoBacktrace` is never constructed
      --> tests/test_option.rs:10:16
       |
    10 |     pub struct OptSourceNoBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^
       |
       = note: `#[warn(dead_code)]` on by default

    warning: struct `OptSourceAlwaysBacktrace` is never constructed
      --> tests/test_option.rs:17:16
       |
    17 |     pub struct OptSourceAlwaysBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^^^^^

    warning: struct `NoSourceOptBacktrace` is never constructed
      --> tests/test_option.rs:25:16
       |
    25 |     pub struct NoSourceOptBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^

    warning: struct `AlwaysSourceOptBacktrace` is never constructed
      --> tests/test_option.rs:32:16
       |
    32 |     pub struct AlwaysSourceOptBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^^^^^

    warning: struct `OptSourceOptBacktrace` is never constructed
      --> tests/test_option.rs:40:16
       |
    40 |     pub struct OptSourceOptBacktrace {
       |                ^^^^^^^^^^^^^^^^^^^^^
2024-06-07 19:36:29 -07:00
David Tolnay
f2824ae379
Fill in ignore reasons in all #[ignore] attributes 2024-06-01 22:16:16 -07:00
David Tolnay
5c8016393f
Release 1.0.61 2024-05-17 09:44:33 -07:00
David Tolnay
e3b1b91ced
Format PR 299 with rustfmt 2024-05-17 09:43:46 -07:00
David Tolnay
6b2b871f39
Merge pull request #299 from quartiq/core
`std::fmt` -> `core::fmt`
2024-05-17 09:42:49 -07:00
Robert Jördens
ce974bc2bd also {std -> core}::panic::UnwindSafe 2024-05-17 15:42:03 +02:00
Robert Jördens
7b6e35b992 use core::fmt instead of std::fmt 2024-05-17 15:34:04 +02:00
David Tolnay
870d11b830
Release 1.0.60 2024-05-06 19:13:41 -07:00
David Tolnay
0ccee7c2a1
Merge pull request #298 from dtolnay/checkcfg
Resolve unexpected_cfgs warning
2024-05-06 19:12:55 -07:00
David Tolnay
cf43d0c130
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
2024-05-06 18:59:05 -07:00
David Tolnay
e7ad85ee6b
Release 1.0.59 2024-04-20 12:12:57 -07:00
David Tolnay
af477ecbe5
Merge pull request #297 from dtolnay/traitident
Implement ToTokens without reliance on {:?}
2024-04-20 12:12:29 -07:00
David Tolnay
f3fbd99048
Implement ToTokens without reliance on {:?} 2024-04-20 11:54:29 -07:00
David Tolnay
508ece867d
Revert "Temporarily disable miri on doctests"
This reverts commit ba33438c88.
2024-04-08 11:57:31 -07:00
David Tolnay
c8c804ce80
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.
2024-03-25 22:24:54 -07:00
David Tolnay
6969595f5f
Merge pull request #293 from dtolnay/workspacewrapper
Apply RUSTC_WORKSPACE_WRAPPER
2024-03-25 22:13:19 -07:00
David Tolnay
488d52f111
Apply RUSTC_WORKSPACE_WRAPPER 2024-03-25 22:11:44 -07:00
David Tolnay
ba33438c88
Temporarily disable miri on doctests 2024-03-24 19:36:39 -07:00
David Tolnay
df8bffad18
Release 1.0.58 2024-03-11 19:55:46 -07:00
David Tolnay
14be209a74
Merge pull request #292 from dtolnay/deadcode
Make compatible with -Dwarnings
2024-03-11 19:55:16 -07:00
David Tolnay
15a1d647cf
Make compatible with -Dwarnings 2024-03-11 19:52:46 -07:00
David Tolnay
f55a5d28da
Ignore mixed_attributes_style clippy lint
warning: item has both inner and outer attributes
     --> tests/test_lints.rs:5:1
      |
    5 | / #[test]
    6 | | fn test_unused_qualifications() {
    7 | |     #![deny(unused_qualifications)]
      | |___________________________________^
      |
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#mixed_attributes_style
      = note: `#[warn(clippy::mixed_attributes_style)]` on by default
2024-03-07 22:31:43 -08:00
David Tolnay
f770921a4f
Resolve assigning_clones clippy lint
warning: assigning the result of `Clone::clone()` may be inefficient
      --> impl/src/ast.rs:85:21
       |
    85 |                     *display = attrs.display.clone();
       |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display.clone_from(&attrs.display)`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
       = note: `#[warn(clippy::assigning_clones)]` on by default

    warning: assigning the result of `Clone::clone()` may be inefficient
       --> impl/src/expand.rs:158:9
        |
    158 |         display_implied_bounds = display.implied_bounds.clone();
        |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display_implied_bounds.clone_from(&display.implied_bounds)`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones

    warning: assigning the result of `Clone::clone()` may be inefficient
       --> impl/src/expand.rs:402:21
        |
    402 |                     display_implied_bounds = display.implied_bounds.clone();
        |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `display_implied_bounds.clone_from(&display.implied_bounds)`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
2024-03-07 21:37:48 -08:00
David Tolnay
1d106b169c
Release 1.0.57 2024-02-11 10:43:07 -08:00
David Tolnay
8a5c4d1b76
Use write_str when args only consists of trailing comma 2024-02-11 10:42:20 -08:00
David Tolnay
f790bee2a4
Phrase flag in terms of whether core::fmt machinery is required 2024-02-11 10:28:28 -08:00
David Tolnay
d43b759e3a
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);
        |
2024-02-11 10:27:54 -08:00
David Tolnay
d09c418295
Touch up PR 286 2024-02-11 10:20:11 -08:00
David Tolnay
097251d2f5
Merge pull request #286 from nyurik/litstr
Optimize performance for string literals in Display::fmt
2024-02-11 10:20:00 -08:00
Yuri Astrakhan
cd79876fe8 optimize by avoiding second fmt.value() call 2024-02-08 23:56:26 -05:00
Yuri Astrakhan
d7e738e1d8 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.
2024-02-08 23:16:52 -05:00
David Tolnay
0717de3f50
Update ui test suite to nightly-2024-02-08 2024-02-07 21:13:02 -08:00
David Tolnay
c7c75470ec
Update ui test suite to nightly-2024-01-31 2024-01-30 22:18:29 -08:00
David Tolnay
77d0af46dd
Release 1.0.56 2024-01-01 22:09:00 -08:00
David Tolnay
d4caabdb38
Pull in proc-macro2 sccache fix 2024-01-01 22:08:35 -08:00
David Tolnay
6089273df5
Release 1.0.55 2024-01-01 20:25:58 -08:00
David Tolnay
322a2ae5c9
Merge pull request #280 from dtolnay/depinfo
Emit dep-info for probe.rs in case sccache needs it
2024-01-01 20:25:36 -08:00
David Tolnay
fd7d7a568c
Emit dep-info for probe.rs in case sccache needs it 2024-01-01 20:23:32 -08:00
David Tolnay
447c328719
Release 1.0.54 2024-01-01 20:22:26 -08:00
David Tolnay
4619db8644
Merge pull request #279 from dtolnay/depinfo
Make env-dep:RUSTC_BOOTSTRAP get listed in probe's dep-info
2024-01-01 20:21:53 -08:00