Commit graph

334 commits

Author SHA1 Message Date
David Tolnay
305be4a979
Release 1.0.42 2023-07-06 15:12:11 -07:00
David Tolnay
264b7d1936
Avoid calling a nonstandard write! macro that might be in scope 2023-07-06 15:00:49 -07:00
David Tolnay
43f3a2a661
Update to 2021 edition 2023-07-06 14:39:58 -07:00
David Tolnay
281997e760
Release 1.0.41 2023-07-04 12:29:02 -07:00
David Tolnay
c28f8fa8f1
Eliminate syn 1 from minimal-versions 2023-07-04 12:28:04 -07:00
David Tolnay
39aaeb00ff
Use error reporting provided by Meta 2023-03-18 14:28:18 -07:00
David Tolnay
3cec8c4879
Release 1.0.40 2023-03-17 17:53:47 -07:00
David Tolnay
fb8b81f20b
Update to syn 2 2023-03-17 17:49:32 -07:00
David Tolnay
490dc0102b
Eliminate unneeded use of Spanned trait on single tokens 2023-03-13 14:13:41 -07:00
David Tolnay
f729af95d1
Release 1.0.39 2023-03-05 15:53:12 -08:00
David Tolnay
74bfe75eb2
Release 1.0.38 2022-12-17 11:56:36 -08:00
David Tolnay
8a996a5bfd
Release 1.0.37 2022-09-27 14:38:00 -07:00
David Tolnay
7b226e33c7
Release 1.0.36 2022-09-24 20:07:08 -07:00
David Tolnay
10ffe03817
Release 1.0.35 2022-09-13 11:56:21 -07:00
David Tolnay
aaf8449dcb
Use ThiserrorProvide to disambiguate 'provide' method calls 2022-09-13 11:32:06 -07:00
David Tolnay
3bcad5957d
Revert "Directly call source.provide instead of going through dyn error"
This reverts commit f924c251ec.
2022-09-13 11:32:05 -07:00
David Tolnay
48f697af3d
Release 1.0.34 2022-09-04 14:03:15 -07:00
David Tolnay
f924c251ec
Directly call source.provide instead of going through dyn error 2022-09-04 13:49:39 -07:00
David Tolnay
fdb266af29
Release 1.0.33 2022-08-30 19:12:58 -07:00
David Tolnay
985da4c7d9
Expose backtrace via generic member access 2022-08-30 19:04:12 -07:00
David Tolnay
c81dc6731b
Make private module more clearly private 2022-08-12 21:53:47 -07:00
David Tolnay
8cb98afb74
Release 1.0.32 2022-08-02 20:47:05 -07:00
David Tolnay
c79f5c9be5
Sort package entries in Cargo.toml 2022-07-31 19:19:06 -07:00
David Tolnay
f09771ebba
Ignore manual_find clippy lint
error: manual implementation of `Iterator::find`
      --> impl/src/prop.rs:76:5
       |
    76 | /     for field in fields {
    77 | |         if field.attrs.from.is_some() {
    78 | |             return Some(field);
    79 | |         }
    80 | |     }
    81 | |     None
       | |________^ help: replace with an iterator: `fields.iter().find(|&field| field.attrs.from.is_some())`
       |
       = note: `-D clippy::manual-find` implied by `-D clippy::all`
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_find

    error: manual implementation of `Iterator::find`
       --> impl/src/prop.rs:105:5
        |
    105 | /     for field in fields {
    106 | |         if field.is_backtrace() {
    107 | |             return Some(field);
    108 | |         }
    109 | |     }
    110 | |     None
        | |________^ help: replace with an iterator: `fields.iter().find(|&field| field.is_backtrace())`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_find
2022-07-01 19:32:32 -07:00
David Tolnay
d5fa92940b
Ignore type_repetition_in_bounds/trait_duplication_in_bounds clippy false positive
https://github.com/rust-lang/rust-clippy/issues/8771

    error: this type has already been used as a bound predicate
      --> impl/src/generics.rs:60:61
       |
    60 |     pub fn insert(&mut self, ty: impl ToTokens, bound: impl ToTokens) {
       |                                                             ^^^^^^^^
       |
       = note: `-D clippy::type-repetition-in-bounds` implied by `-D clippy::pedantic`
       = help: consider combining the bounds: `impl ToTokens: ToTokens + ToTokens`
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#type_repetition_in_bounds

    error: this trait bound is already specified in the where clause
      --> impl/src/generics.rs:60:39
       |
    60 |     pub fn insert(&mut self, ty: impl ToTokens, bound: impl ToTokens) {
       |                                       ^^^^^^^^
       |
       = note: `-D clippy::trait-duplication-in-bounds` implied by `-D clippy::pedantic`
       = help: consider removing this trait bound
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#trait_duplication_in_bounds
2022-04-30 20:26:10 -07:00
David Tolnay
cbe8212495
Release 1.0.31 2022-04-30 14:23:31 -07:00
David Tolnay
21c26903e2
Ignore wrong_self_convention clippy lint
error: methods called `from_*` usually take no `self`
     --> impl/src/prop.rs:5:30
      |
    5 |     pub(crate) fn from_field(&self) -> Option<&Field> {
      |                              ^^^^^
      |
      = note: `-D clippy::wrong-self-convention` implied by `-D clippy::all`
      = help: consider choosing a less ambiguous name
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention

    error: methods called `from_*` usually take no `self`
      --> impl/src/prop.rs:51:30
       |
    51 |     pub(crate) fn from_field(&self) -> Option<&Field> {
       |                              ^^^^^
       |
       = help: consider choosing a less ambiguous name
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
2022-01-14 19:27:43 -08:00
David Tolnay
c4d7c2b135
Fix miscounting fields when from and backtrace are same field 2021-12-18 11:41:17 -08:00
David Tolnay
d7664d5475
Ignore cast_lossless Clippy pedantic lint
error: casting `bool` to `usize` is more cleanly stated with `usize::from(_)`
       --> impl/src/valid.rs:183:31
        |
    183 |         if fields.len() > 1 + has_backtrace as usize {
        |                               ^^^^^^^^^^^^^^^^^^^^^^ help: try: `usize::from(has_backtrace)`
        |
        = note: `-D clippy::cast-lossless` implied by `-D clippy::pedantic`
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#cast_lossless
2021-12-07 18:32:37 -08:00
David Tolnay
672e9525bb
Release 1.0.30 2021-10-09 01:53:11 +01:00
David Tolnay
ed234d41b5
Declare minimum Rust version in Cargo metadata 2021-10-02 02:19:41 -04:00
David Tolnay
c7dd271dcd
Release 1.0.29 2021-09-04 20:57:38 -07:00
David Tolnay
4b581e3fb9
Skip a redundant Member clone 2021-09-04 20:41:29 -07:00
David Tolnay
f688fd7009
Handle multiple bounds from the same format string on the same field 2021-09-04 20:00:05 -07:00
David Tolnay
72abba6f04
Deduplicate inferred bounds 2021-09-04 19:52:03 -07:00
David Tolnay
cc65053651
Implied bounds for the remaining std::fmt traits 2021-09-04 19:45:32 -07:00
David Tolnay
3e699aa43b
Implied bounds for transparent attribute 2021-09-04 19:38:00 -07:00
David Tolnay
1e6e267914
Implied bounds for Display and Error impl 2021-09-04 18:21:37 -07:00
David Tolnay
ec9ac76c52
Revert "Suppress nonstandard_macro_braces in generated code"
This reverts commit 245e7cfd14.
2021-09-04 12:42:56 -07:00
David Tolnay
b47c75d3f5
Release 1.0.28 2021-08-28 16:07:01 -07:00
David Tolnay
2a2d1725e7
Support #[from] on an Option field 2021-08-28 15:51:20 -07:00
David Tolnay
b087faf217
Release 1.0.27 2021-08-28 14:18:20 -07:00
David Tolnay
799bb53b10
Extract combined backtrace-source case to separate match arm 2021-08-28 13:44:42 -07:00
David Tolnay
d49c5af10f
Handle backtrace coming from Option source field 2021-08-28 13:42:03 -07:00
David Tolnay
2b37b9ed62
Handle enum containing #[source] #[backtrace] field 2021-08-28 13:40:17 -07:00
David Tolnay
ed396c2074
Factor out distinct backtrace logic 2021-08-28 13:29:34 -07:00
David Tolnay
9b542cef8f
Adjust how distinct backtrace field is accessed 2021-08-28 13:29:34 -07:00
David Tolnay
ca33ed9bc7
Touch up PR 137 2021-08-28 13:29:34 -07:00
David Tolnay
c45d7e4de8
Merge pull request 137 from astraw/combined-from-and-backtrace-field 2021-08-28 12:56:45 -07:00
David Tolnay
031fea6f3b
Release 1.0.26 2021-07-02 21:11:05 -07:00