Commit graph

772 commits

Author SHA1 Message Date
David Tolnay
1142834139
Add ui test of raw identifier in format string 2024-11-04 15:22:04 -05:00
David Tolnay
ef59afe2d4
Delete support for raw identifiers inside format string 2024-11-04 15:20:05 -05:00
David Tolnay
b6e30da98d
Merge pull request #346 from dtolnay/fmttest
Add tests of `_` and `self` variables in format string
2024-11-04 15:17:19 -05:00
David Tolnay
4d397bc186
Add test of underscore variable in format string 2024-11-04 15:15:44 -05:00
David Tolnay
6b48b090f8
Add test of non-rawable keyword in format string 2024-11-04 15:14:31 -05:00
David Tolnay
8d06fb5549
Release 1.0.68 2024-11-04 11:49:43 -05:00
David Tolnay
372fd8a71a
Merge pull request #344 from dtolnay/binop
Disregard equality binop in fallback parser
2024-11-04 11:49:23 -05:00
David Tolnay
08f89925bf
Disregard equality binop in fallback parser 2024-11-04 11:46:01 -05:00
David Tolnay
d2a823d2ae
Merge pull request #343 from dtolnay/unnamed
Add logic to determine whether unnamed fmt arguments are present
2024-11-04 11:44:38 -05:00
David Tolnay
b3bf7a6f69
Add logic to determine whether unnamed fmt arguments are present 2024-11-04 11:34:52 -05:00
David Tolnay
490f9c017b
Merge pull request #342 from dtolnay/synfull
Defer is_syn_full() call until first expression
2024-11-04 11:31:05 -05:00
David Tolnay
7daf1b169d
Defer is_syn_full() call until first expression 2024-11-04 11:29:37 -05:00
David Tolnay
c92ac9940b
Merge pull request #341 from dtolnay/parsescan
Interleave Expr parsing and scanning better
2024-11-04 11:28:22 -05:00
David Tolnay
40a53f7f33
Interleave Expr parsing and scanning better 2024-11-04 11:21:12 -05:00
David Tolnay
925f2dde77
Release 1.0.67 2024-11-03 10:17:51 -05:00
David Tolnay
b3bc3e722d
Merge pull request #340 from dtolnay/fallbackscan
Add infallible expr scanner fallback for scanning invalid code
2024-11-02 21:15:52 -07:00
David Tolnay
0ab908aab0
Ignore expected unnecessary_wraps pedantic clippy lint
warning: this function's return value is unnecessarily wrapped by `Result`
       --> impl/src/fmt.rs:122:1
        |
    122 | / fn explicit_named_args(input: ParseStream) -> Result<Set<Ident>> {
    123 | |     let ahead = input.fork();
    124 | |     if let Ok(set) = try_explicit_named_args(&ahead) {
    125 | |         input.advance_to(&ahead);
    ...   |
    136 | |     Ok(Set::new())
    137 | | }
        | |_^
        |
        = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_wraps
        = note: `-W clippy::unnecessary-wraps` implied by `-W clippy::pedantic`
        = help: to override `-W clippy::pedantic` add `#[allow(clippy::unnecessary_wraps)]`
    help: remove `Result` from the return type...
        |
    122 | fn explicit_named_args(input: ParseStream) -> std::collections::BTreeSet<proc_macro2::Ident> {
        |                                               ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    help: ...and then change returning expressions
        |
    126 ~         return set;
    127 |     }
    ...
    131 |         input.advance_to(&ahead);
    132 ~         return set;
    133 |     }
    134 |
    135 |     input.parse::<TokenStream>().unwrap();
    136 ~     Set::new()
        |
2024-11-02 21:12:30 -07:00
David Tolnay
c357f9728e
Add infallible expr scanner fallback for scanning invalid code 2024-11-02 21:11:32 -07:00
David Tolnay
60bc0f2733
Merge pull request #339 from dtolnay/fullexpr
Use syn's real expression parser if it has full syntax support
2024-11-02 21:04:28 -07:00
David Tolnay
dabb96fdaf
Use syn's real expression parser if it has full syntax support 2024-11-02 20:46:25 -07:00
Yotam Ofek
144b3b690b
Remove #[allow] for fixed clippy bug 2024-11-02 20:03:53 -07:00
David Tolnay
851f6946e2
Merge pull request #337 from dtolnay/scan
More robust scanning for fmt argument expressions
2024-11-02 09:48:32 -07:00
David Tolnay
45e18f53df
Ignore enum_glob_use pedantic clippy lint
warning: usage of wildcard import for enum variants
     --> impl/src/scan_expr.rs:1:12
      |
    1 | use self::{Action::*, Input::*};
      |            ^^^^^^^^^ help: try: `Action::{DecDepth, Finish, IncDepth, SetState}`
      |
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_glob_use
      = note: `-W clippy::enum-glob-use` implied by `-W clippy::pedantic`
      = help: to override `-W clippy::pedantic` add `#[allow(clippy::enum_glob_use)]`

    warning: usage of wildcard import for enum variants
     --> impl/src/scan_expr.rs:1:23
      |
    1 | use self::{Action::*, Input::*};
      |                       ^^^^^^^^ help: try: `Input::{CanBeginExpr, ConsumeAny, ConsumeBinOp, ConsumeBrace, ConsumeDelimiter, ConsumeIdent, ConsumeLifetime, ConsumeLiteral, ConsumeNestedBrace, Empty, ExpectPath, ExpectTurbofish, ExpectType, Keyword, Otherwise, Punct}`
      |
      = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#enum_glob_use
2024-11-02 09:45:27 -07:00
David Tolnay
2585669fa1
More robust scanning for fmt argument expressions 2024-11-02 09:42:34 -07:00
David Tolnay
c0050558f7
Import expr scanner from syn 2.0.87 2024-11-02 09:42:33 -07:00
David Tolnay
561e29eb80
Add regression test for issue 335
error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
       --> tests/test_expr.rs:105:14
        |
    104 |     #[derive(Error, Debug)]
        |              ----- in this derive macro expansion
    105 |     #[error("{A} {b}", b = &0 as &dyn Trait<i32, A = i32>)]
        |              ^^^ `PathBuf` cannot be formatted with the default formatter; call `.display()` on it
        |
        = help: the trait `std::fmt::Display` is not implemented for `PathBuf`
        = note: in format strings you may be able to use `{:?}` (or {:#?} for pretty-print) instead
        = note: call `.display()` or `.to_string_lossy()` to safely print paths, as they may contain non-Unicode data
        = note: this error originates in the macro `$crate::format_args` which comes from the expansion of the derive macro `Error` (in Nightly builds, run with -Z macro-backtrace for more info)
2024-11-02 09:42:15 -07:00
David Tolnay
751dc63a8e
Track caller of the assertion helper in test_expr 2024-11-02 09:41:40 -07:00
David Tolnay
a1882b2a75
Merge pull request #334 from dtolnay/underscorevar
Remove format var parsing workaround that targeted rustc 1.40 and older
2024-10-31 21:25:19 -07:00
David Tolnay
747ce20cc2
Remove format var parsing workaround that targeted rustc 1.40 and older 2024-10-31 21:23:45 -07:00
David Tolnay
057c15c4e6
Merge pull request #333 from dtolnay/nonegroup
Preserve None-delimited groups inside format args
2024-10-31 21:04:27 -07:00
David Tolnay
2b16098823
Preserve None-delimited groups inside format args 2024-10-31 21:02:21 -07:00
David Tolnay
d1a8254ee5
Release 1.0.66 2024-10-31 16:54:13 -07:00
David Tolnay
e2e9da3f7c
Merge pull request #328 from dtolnay/peekend
Use peek2(End) instead of fork/advance_to
2024-10-31 16:53:48 -07:00
David Tolnay
3d79a908ac
Use peek2(End) instead of fork/advance_to 2024-10-31 16:51:50 -07:00
David Tolnay
a9a6c98a2e
Merge pull request #329 from dtolnay/up
Raise required compiler to rust 1.61
2024-10-31 16:51:39 -07:00
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