Commit graph

587 commits

Author SHA1 Message Date
David Tolnay
51a5e4cbfe
Raise minimum compiler for test suite to rust 1.70
With 1.61:

    error: package `indexmap v2.6.0` cannot be built because it requires
    rustc 1.63 or newer, while the currently active rustc version is 1.61.0

With 1.63:

    error: package `toml_datetime v0.6.8` cannot be built because it requires
    rustc 1.65 or newer, while the currently active rustc version is 1.63.0

With 1.65:

    error: package `trybuild v1.0.101` cannot be built because it requires
    rustc 1.70 or newer, while the currently active rustc version is 1.65.0
    Either upgrade to rustc 1.70 or newer, or use
    cargo update -p trybuild@1.0.101 --precise ver
    where `ver` is the latest version of `trybuild` supporting rustc 1.65.0
2024-10-31 16:49:12 -07:00
David Tolnay
8fb92ff3f0
Resolve uninlined_format_args pedantic clippy lint in build script
warning: variables can be used directly in the `format!` string
       --> build.rs:140:9
        |
    140 | /         eprintln!(
    141 | |             "Environment variable ${} is not set during execution of build script",
    142 | |             key,
    143 | |         );
        | |_________^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args
        = note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic`
        = help: to override `-W clippy::pedantic` add `#[allow(clippy::uninlined_format_args)]`
2024-10-31 16:44:05 -07:00
David Tolnay
0e2bef9ff1
Raise required compiler to rust 1.61 2024-10-31 16:42:50 -07:00
David Tolnay
bb30f2e9b4
Merge pull request #327 from dtolnay/literal
Improve error on malformed format attribute
2024-10-31 14:28:28 -07:00
David Tolnay
5d3edf9d7e
Improve error on malformed format attribute 2024-10-31 14:25:18 -07:00
David Tolnay
003a89fc01
Merge pull request #326 from dtolnay/sealed
Seal the private AsDisplay trait
2024-10-24 17:46:45 -07:00
David Tolnay
010c2d81e9
Seal the private AsDisplay trait 2024-10-24 17:43:57 -07:00
David Tolnay
5088592a4e
Release 1.0.65 2024-10-22 10:50:31 -07:00
David Tolnay
3309b3772a
Merge pull request #325 from dtolnay/outdir
Clean up dep-info files from OUT_DIR
2024-10-22 10:49:22 -07:00
David Tolnay
f563b1dc76
Clean up dep-info files from OUT_DIR 2024-10-22 10:46:52 -07:00
David Tolnay
a72ea77c45
Resolve extra_unused_lifetimes clippy lint
warning: this lifetime isn't used in the impl
      --> src/aserror.rs:46:6
       |
    46 | impl<'a, T: Error + 'a> Sealed for T {}
       |      ^^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#extra_unused_lifetimes
       = note: `-W clippy::extra-unused-lifetimes` implied by `-W clippy::all`
       = help: to override `-W clippy::all` add `#[allow(clippy::extra_unused_lifetimes)]`
2024-10-07 00:15:20 +02:00
David Tolnay
1b15d6e6a4
Ignore needless_lifetimes clippy lint
warning: the following explicit lifetimes could be elided: 'a
       --> tests/test_display.rs:152:14
        |
    152 |         impl<'a> Display for Msg<'a> {
        |              ^^                  ^^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
        = note: `-W clippy::needless-lifetimes` implied by `-W clippy::all`
        = help: to override `-W clippy::all` add `#[allow(clippy::needless_lifetimes)]`
    help: elide the lifetimes
        |
    152 -         impl<'a> Display for Msg<'a> {
    152 +         impl Display for Msg<'_> {
        |
2024-10-07 00:14:30 +02:00
David Tolnay
84484bc75c
Release 1.0.64 2024-09-22 10:53:10 -07:00
David Tolnay
023f036de4
Merge pull request #322 from oxalica/feat/mark-auto-derived
Mark `#[automatically_derived]` for generated impls
2024-09-22 10:52:02 -07:00
oxalica
ae1f47e3e5 Mark #[automatically_derived] for generated impls 2024-09-22 11:24:53 -04:00
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