Commit graph

244 commits

Author SHA1 Message Date
David Tolnay
0e2bef9ff1
Raise required compiler to rust 1.61 2024-10-31 16:42:50 -07:00
David Tolnay
5d3edf9d7e
Improve error on malformed format attribute 2024-10-31 14:25:18 -07:00
David Tolnay
5088592a4e
Release 1.0.65 2024-10-22 10:50:31 -07:00
David Tolnay
84484bc75c
Release 1.0.64 2024-09-22 10:53:10 -07:00
oxalica
ae1f47e3e5 Mark #[automatically_derived] for generated impls 2024-09-22 11:24:53 -04:00
David Tolnay
915c75e8a3
Release 1.0.63 2024-07-17 12:09:02 -07:00
David Tolnay
0bf6e3dd78
Release 1.0.62 2024-07-11 16:31:35 -07:00
David Tolnay
40a7779b17
Support .0.0 nested tuple index 2024-07-11 16:27:20 -07:00
David Tolnay
5c8016393f
Release 1.0.61 2024-05-17 09:44:33 -07:00
David Tolnay
870d11b830
Release 1.0.60 2024-05-06 19:13:41 -07:00
David Tolnay
e7ad85ee6b
Release 1.0.59 2024-04-20 12:12:57 -07:00
David Tolnay
f3fbd99048
Implement ToTokens without reliance on {:?} 2024-04-20 11:54:29 -07:00
David Tolnay
df8bffad18
Release 1.0.58 2024-03-11 19:55:46 -07: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
d09c418295
Touch up PR 286 2024-02-11 10:20:11 -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
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
447c328719
Release 1.0.54 2024-01-01 20:22:26 -08:00
David Tolnay
b97654ab2c
Remove option_if_let_else clippy suppression 2023-12-30 14:42:20 -08:00
David Tolnay
af28d9c078
Release 1.0.53 2023-12-30 13:53:37 -08:00
David Tolnay
be83323c0f
Release 1.0.52 2023-12-25 13:01:40 -08:00
David Tolnay
6b00235610
Leave private traits' name out of scope 2023-12-25 10:26:29 -08:00
David Tolnay
87466d2a25
Update name of blocks_in_if_conditions clippy lint
warning: lint `clippy::blocks_in_if_conditions` has been renamed to `clippy::blocks_in_conditions`
     --> impl/src/lib.rs:2:5
      |
    2 |     clippy::blocks_in_if_conditions,
      |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::blocks_in_conditions`
      |
      = note: `#[warn(renamed_and_removed_lints)]` on by default
2023-12-16 18:19:09 -08:00
David Tolnay
0555b80591
Release 1.0.51 2023-12-15 14:19:23 -08:00
David Tolnay
1754825c24
Work around trivial bounds being unstable 2023-12-15 14:13:00 -08:00
David Tolnay
1567f40ec3
Try to remove "doesn't implement Debug" in fallback expansion 2023-12-15 14:12:59 -08:00
David Tolnay
d7e3bdd980
Fix redundant "Error doesn't implement Display" in fallback 2023-12-15 14:12:30 -08:00
David Tolnay
7e5ff62806
Emit an Error impl even in the presence of bad attributes 2023-12-15 14:12:13 -08:00
David Tolnay
d1efad11a5
Delete unused original DeriveInput from ast 2023-12-15 10:54:28 -08:00
David Tolnay
ed16526d4d
Delete elaborate spans on path of error trait 2023-12-15 10:52:02 -08:00
David Tolnay
e9ea67c7e2
Ignore struct_field_names pedantic clippy lint
warning: field name ends with the struct's name
      --> impl/src/attr.rs:23:5
       |
    23 |     pub has_bonus_display: bool,
       |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#struct_field_names
       = note: `-W clippy::struct-field-names` implied by `-W clippy::pedantic`
       = help: to override `-W clippy::pedantic` add `#[allow(clippy::struct_field_names)]`
2023-10-21 21:37:09 -07:00
David Tolnay
a7d220d791
Release 1.0.50 2023-10-19 11:10:16 -07:00
David Tolnay
4088d169ed
Ignore module_name_repetitions pedantic clippy lint
warning: item name ends with its containing module's name
     --> impl/src/span.rs:4:11
      |
    4 | pub trait MemberSpan {
      |           ^^^^^^^^^^
      |
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#module_name_repetitions
      = note: `-W clippy::module-name-repetitions` implied by `-W clippy::pedantic`
      = help: to override `-W clippy::pedantic` add `#[allow(clippy::module_name_repetitions)]`
2023-10-19 11:07:59 -07:00
David Tolnay
ff0a0a5859
Source and From attributes only have single-ident path 2023-10-19 11:05:01 -07:00
David Tolnay
7cec716420
Remove reliance on Spanned for Member 2023-10-19 11:05:01 -07:00
David Tolnay
c9fe739272
Touch up PR 258 2023-10-19 11:05:01 -07:00
Maarten de Vries
a49f7c603d Change span of as_dyn_error() to point compile error at attribute. 2023-10-19 17:09:30 +02:00
David Tolnay
54465b7475
Release 1.0.49 2023-09-26 16:25:47 -07:00
David Tolnay
79704adca9
Merge pull request 255 from mina86/a 2023-09-26 16:25:00 -07:00
Michal Nazarewicz
f0f303a7ba Prefer core crate in macro expansions
Prefer using core crate over std in macro expansions wherever a symbol has
a stable equivalent in core.  This makes it easier to eventually support
no_std in the future once error_in_core stabilises.
2023-09-08 00:27:15 +02:00
David Tolnay
5c5f342a5e
Release 1.0.48 2023-09-02 13:49:56 -07:00
David Tolnay
1f5cbd701e
Ignore manual_let_else pedantic clippy lint
warning: this could be rewritten as `let...else`
       --> impl/src/expand.rs:511:5
        |
    511 | /     let bracketed = match &last.arguments {
    512 | |         PathArguments::AngleBracketed(bracketed) => bracketed,
    513 | |         _ => return None,
    514 | |     };
        | |______^ help: consider writing: `let PathArguments::AngleBracketed(bracketed) = &last.arguments else { return None };`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else

    warning: this could be rewritten as `let...else`
      --> impl/src/fmt.rs:43:13
       |
    43 | /             let next = match read.chars().next() {
    44 | |                 Some(next) => next,
    45 | |                 None => return,
    46 | |             };
       | |______________^ help: consider writing: `let Some(next) = read.chars().next() else { return };`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else

    warning: this could be rewritten as `let...else`
      --> impl/src/fmt.rs:68:17
       |
    68 | /                 let end_spec = match read.find('}') {
    69 | |                     Some(end_spec) => end_spec,
    70 | |                     None => return,
    71 | |                 };
       | |__________________^ help: consider writing: `let Some(end_spec) = read.find('}') else { return };`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else

    warning: this could be rewritten as `let...else`
       --> impl/src/valid.rs:216:13
        |
    216 | /             let bracketed = match &ty.path.segments.last().unwrap().arguments {
    217 | |                 PathArguments::AngleBracketed(bracketed) => bracketed,
    218 | |                 _ => return false,
    219 | |             };
        | |______________^ help: consider writing: `let PathArguments::AngleBracketed(bracketed) = &ty.path.segments.last().unwrap().arguments else { return false };`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_let_else
2023-09-02 13:16:41 -07:00
David Tolnay
7566a29b2a
AsDisplay is no longer an unused import
Prior to PR 251, 2 traits were imported (DisplayAsDisplay, PathAsDisplay),
and in some cases only 1 would be used. Now it's 1 trait and is always
used.
2023-09-02 12:44:45 -07:00
David Tolnay
887c9fb3fc
Touch up PR 251 2023-09-02 12:43:56 -07:00