Commit graph

334 commits

Author SHA1 Message Date
David Tolnay
245e7cfd14
Suppress nonstandard_macro_braces in generated code 2021-07-02 21:10:09 -07:00
Andrew Straw
86993c25ab allow #[from] and #[backtrace] on same field
See https://github.com/dtolnay/thiserror/pull/93#pullrequestreview-666213667
2021-06-12 10:47:23 +02:00
David Tolnay
a37b5ab11f
Resolve needless_borrow clippy lints
error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:68:25
       |
    68 |             return Some(&field);
       |                         ^^^^^^ help: change this to: `field`
       |
       = note: `-D clippy::needless-borrow` implied by `-D clippy::all`
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:77:25
       |
    77 |             return Some(&field);
       |                         ^^^^^^ help: change this to: `field`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:82:70
       |
    82 |             Member::Named(ident) if ident == "source" => return Some(&field),
       |                                                                      ^^^^^^ help: change this to: `field`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:92:25
       |
    92 |             return Some(&field);
       |                         ^^^^^^ help: change this to: `field`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&ast::Field`) that is immediately dereferenced by the compiler
      --> impl/src/prop.rs:97:25
       |
    97 |             return Some(&field);
       |                         ^^^^^^ help: change this to: `field`
       |
       = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow

    error: this expression borrows a reference (`&syn::Type`) that is immediately dereferenced by the compiler
       --> impl/src/valid.rs:191:41
        |
    191 |         if contains_non_static_lifetime(&source_field.ty) {
        |                                         ^^^^^^^^^^^^^^^^ help: change this to: `source_field.ty`
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow
2021-06-04 19:49:18 -07:00
David Tolnay
19cb5cee4b
Release 1.0.25 2021-05-22 14:33:15 -07:00
David Tolnay
c10adbc25e
Ignore manual_map clippy lint
I do not find that it makes the code clearer in this case, given the
related `if` branch right above.

    error: manual implementation of `Option::map`
       --> impl/src/ast.rs:145:16
        |
    145 |           } else if let Some(transparent) = &self.transparent {
        |  ________________^
    146 | |             Some(transparent.span)
    147 | |         } else {
    148 | |             None
    149 | |         }
        | |_________^ help: try this: `self.transparent.as_ref().map(|transparent| transparent.span)`
        |
        = note: `-D clippy::manual-map` implied by `-D clippy::all`
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_map
2021-02-25 20:44:36 -08:00
David Tolnay
1b0a84996b
Release 1.0.24 2021-02-18 20:25:18 -08:00
David Tolnay
d81b7466bc
Merge pull request 121 from Aaron1011/fix/source-span 2021-02-18 20:15:06 -08:00
Aaron Hill
0fa679b1b8
Consistently use quote! when emitting 'source'
When a macro generates part of the derive input, the call-site hygiene
may be different than the hygiene of a field. Therefore, we need to
be sure to use the same hygiene information for any identifiers we
generate, instead of relying on the hygiene from a particular span
via `quote_spanned!`
2021-02-18 12:40:04 -05:00
David Tolnay
dc3c5c6a87
Resolve clippy filter_map_next pedantic lint 2020-12-29 16:24:38 -08:00
David Tolnay
c0a56fefbe
Opt in to pedantic clippy lints 2020-12-29 16:22:54 -08:00
David Tolnay
d263b4b7e4
Release 1.0.23 2020-12-26 17:37:45 -08:00
David Tolnay
0859205018
Detect non-static lifetime behind reference type parameter 2020-12-26 17:29:46 -08:00
David Tolnay
d31d96bba2
Add justification to non-static lifetime diagnostic 2020-12-26 17:27:02 -08:00
David Tolnay
464a409608
Tweak placement of diagnostic on non-static lifetimes in source 2020-12-26 17:25:34 -08:00
David Tolnay
09f247adda
Release 1.0.22 2020-11-03 16:47:44 -08:00
David Tolnay
aafcf0a1b6
Fix second place that keyword fmt argument is failing 2020-11-03 16:41:37 -08:00
David Tolnay
2722f8e2c3
Fix first place that keyword fmt argument is failing 2020-11-03 16:38:35 -08:00
David Tolnay
334fed3a74
Briefer naming convention for raw identifier format vars 2020-11-03 16:27:28 -08:00
David Tolnay
dbbd0f816c
Consolidate ident lex and conversion to Ident 2020-11-03 16:26:24 -08:00
David Tolnay
227ef7df76
Replace use of str::strip_prefix
Strip_prefix was introduced in Rust 1.45, whereas we support older compilers.
2020-11-03 16:23:05 -08:00
ninevra
5fc018d195 Prefix raw field named params with "raw_field_"
Reduces likelihood of collision with user-defined named parameters.
2020-11-03 15:21:46 -08:00
ninevra
9d274d433e Support raw idents in error() format strings 2020-11-03 14:42:35 -08:00
David Tolnay
04d2e6c998
Pick up more specific string literal error message 2020-10-17 10:59:56 -07:00
David Tolnay
f757a0489b
Release 1.0.21 2020-10-06 16:55:43 -07:00
David Tolnay
c6dcc694ba
Generalize backtrace capture to From<Backtrace> 2020-10-06 16:49:02 -07:00
David Tolnay
42b537acf0
Release 1.0.20 2020-06-15 16:22:15 -07:00
David Tolnay
d0ece37338
Suppress unused_qualifications lint 2020-06-15 16:12:16 -07:00
David Tolnay
8305a8cc8a
Release 1.0.19 2020-05-21 19:05:57 -07:00
David Tolnay
ecb595b389
Suppress clippy used_underscore_binding pedantic lint 2020-05-21 18:41:17 -07:00
David Tolnay
54adff8fc5
Update name of renamed block_in_if_condition_stmt lint
warning: lint `clippy::block_in_if_condition_stmt` has been renamed to `clippy::blocks_in_if_conditions`
     --> impl/src/lib.rs:1:10
      |
    1 | #![allow(clippy::block_in_if_condition_stmt, clippy::range_plus_one)]
      |          ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `clippy::blocks_in_if_conditions`
      |
      = note: `#[warn(renamed_and_removed_lints)]` on by default
2020-05-18 18:50:43 -07:00
David Tolnay
25632e8afb
Release 1.0.18 2020-05-15 16:50:39 -07:00
David Tolnay
3a49609f78
Inherit span from enum to variants 2020-05-15 16:37:07 -07:00
David Tolnay
3891d985fb
Take a useful span for constructed idents 2020-05-15 16:30:57 -07:00
David Tolnay
f79a85f72b
Release 1.0.17 2020-05-12 22:47:13 -07:00
David Tolnay
186509da2a
Remove CI badge from Cargo.toml
Support for badges has been deprecated by crates.io.
2020-05-01 21:07:16 -07:00
David Tolnay
94e62a81bc
Release 1.0.16 2020-04-27 15:53:18 -07:00
David Tolnay
85b0944eac
Reject transparent attr in field attribute position 2020-04-27 15:48:44 -07:00
David Tolnay
d8d55e6655
Release 1.0.15 2020-04-11 11:37:53 -07:00
David Tolnay
4885372ced
Improve span of missing Display impl error 2020-04-11 10:34:26 -07:00
David Tolnay
6fd4059298
Release 1.0.14 2020-03-29 08:47:11 -07:00
David Tolnay
33166f7af4
Allow matches to refer to deprecated variants 2020-03-29 08:42:11 -07:00
David Tolnay
14b54d2256
Release 1.0.13 2020-03-22 23:10:43 -07:00
David Tolnay
1b40434034
Fix missing comma between named format elements 2020-03-22 23:10:01 -07:00
David Tolnay
e160f5d908
Release 1.0.12 2020-03-20 22:50:36 -07:00
David Tolnay
a1ae05c954
Add error message for non-static source 2020-03-20 22:39:18 -07:00
David Tolnay
db357fac83
Select a single docs.rs build target 2020-03-17 13:27:37 -07:00
David Tolnay
55d6fbb460
Release 1.0.11 2020-02-14 11:12:23 -08:00
David Tolnay
0856edd777
Link license files into impl subcrate 2020-02-14 11:11:30 -08:00
David Tolnay
ccbb2ab862
Release 1.0.10 2020-01-28 11:51:27 -08:00
David Tolnay
5e6ebafd8b
Parse .0 fmt arguments in all valid places 2020-01-28 11:39:52 -08:00