David Tolnay
c008375268
FIx typo in ui test
2024-12-21 10:20:21 -08:00
David Tolnay
2bd29821f4
Release 2.0.8
2024-12-17 19:18:03 -08:00
David Tolnay
a7de3ab22d
Merge pull request #399 from dtolnay/respan
...
Fix spans on macro-generated bindings and format variables
2024-12-17 19:17:30 -08:00
David Tolnay
f1243a0ceb
Fix spans on macro-generated bindings and format variables
2024-12-17 19:14:10 -08:00
David Tolnay
6a07345135
Add regression test for issue 398
...
error[E0425]: cannot find value `_0` in this scope
--> tests/test_display.rs:308:17
|
308 | #[error("{0}")]
| ^^^^^ not found in this scope
error[E0425]: cannot find value `__display_x` in this scope
--> tests/test_display.rs:310:17
|
310 | #[error("{x}")]
| ^^^^^ not found in this scope
2024-12-17 19:14:03 -08:00
David Tolnay
9c0f2d230d
Release 2.0.7
2024-12-13 14:42:57 -08:00
David Tolnay
2deec96fc0
Merge pull request 397 from zertosh/from_allow_expect
2024-12-13 14:40:50 -08:00
Andres Suarez
100d9164f2
Avoid associating #[from] with lint allow
2024-12-13 14:06:02 -08:00
David Tolnay
485c2b7eed
Reword spurious errors comment
2024-12-08 11:28:58 -08:00
David Tolnay
2075e87257
Release 2.0.6
2024-12-08 10:39:40 -08:00
David Tolnay
e9a9085150
Merge pull request #396 from dtolnay/deprecatedfrom
...
Suppress deprecation warning on generated From impls
2024-12-08 10:39:10 -08:00
David Tolnay
6e8c7244c9
Suppress deprecation warning on generated From impls
2024-12-08 10:37:43 -08:00
David Tolnay
caf585c978
Add test of deprecated type in From impl
...
error: use of deprecated struct `test_deprecated::DeprecatedStruct`
--> tests/test_lints.rs:73:13
|
73 | DeprecatedStruct,
| ^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> tests/test_lints.rs:39:13
|
39 | #![deny(deprecated)]
| ^^^^^^^^^^
2024-12-08 10:36:57 -08:00
David Tolnay
f1f159d7e7
Release 2.0.5
2024-12-07 09:04:57 -08:00
David Tolnay
366a7b253e
Merge pull request #395 from dtolnay/fallback
...
Move fallback expansion to separate module
2024-12-07 09:04:39 -08:00
David Tolnay
88a46035e1
Move fallback expansion to separate module
2024-12-07 09:03:07 -08:00
David Tolnay
6712f8cca6
Merge pull request #394 from dtolnay/deprecated
...
Prevent deprecation warning on generated impl for deprecated type
2024-12-07 09:00:30 -08:00
David Tolnay
07e7d990fa
Add "in this derive macro expansion" to missing Display errors
2024-12-07 08:58:16 -08:00
David Tolnay
714229d821
Work around deprecation warning on generated impl for deprecated type
2024-12-07 08:58:16 -08:00
David Tolnay
0ba7d01e8e
Add tests of deprecated error types
...
error: use of deprecated struct `test_deprecated::DeprecatedStruct`
--> tests/test_lints.rs:44:16
|
44 | pub struct DeprecatedStruct;
| ^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> tests/test_lints.rs:39:13
|
39 | #![deny(deprecated)]
| ^^^^^^^^^^
error: use of deprecated struct `test_deprecated::DeprecatedStruct`
--> tests/test_lints.rs:44:16
|
44 | pub struct DeprecatedStruct;
| ^^^^^^^^^^^^^^^^
error: use of deprecated enum `test_deprecated::DeprecatedEnum`
--> tests/test_lints.rs:55:14
|
55 | pub enum DeprecatedEnum {
| ^^^^^^^^^^^^^^
2024-12-07 08:58:12 -08:00
David Tolnay
42b1460612
Standardize on 'Error, Debug' derive order
2024-12-07 08:48:24 -08:00
David Tolnay
2096b11bed
Fold test_deprecated into test_lints
2024-12-07 08:46:34 -08:00
David Tolnay
70a12613ef
Release 2.0.4
2024-12-03 07:06:42 -08:00
David Tolnay
4fde2846c8
Merge pull request #391 from matt-phylum/needless-lifetimes
...
suppress needless_lifetimes lints from clippy 0.1.83
2024-12-03 07:05:54 -08:00
Matthew Donoughe
aa19b7cfce
suppress needless_lifetimes lints from clippy 0.1.83
2024-12-03 08:40:10 -05:00
David Tolnay
ad2f20b9f7
Use ui test syntax that does not interfere with rustfmt
2024-11-10 23:51:28 -08:00
David Tolnay
15fd26e476
Release 2.0.3
2024-11-10 13:17:27 -08:00
David Tolnay
7046023130
Simplify how has_bonus_display is accumulated
2024-11-10 13:15:46 -08:00
David Tolnay
9cc1d0b251
Merge pull request #384 from dtolnay/nowrap
...
Use Var wrapper only for Pointer formatting
2024-11-10 13:15:05 -08:00
David Tolnay
1d040f358a
Use Var wrapper only for Pointer formatting
2024-11-10 13:11:21 -08:00
David Tolnay
6a6132d79b
Extend no-display ui test to cover another fmt trait
2024-11-10 13:08:53 -08:00
David Tolnay
a061beb9dc
Merge pull request #383 from dtolnay/both
...
Support Display and Debug of same path in error message
2024-11-10 13:01:35 -08:00
David Tolnay
63882935be
Support Display and Debug of same path in error message
2024-11-10 12:59:19 -08:00
David Tolnay
dc0359eeec
Defer binding_value construction
2024-11-10 12:59:17 -08:00
David Tolnay
520343e37d
Add test of Debug and Display of paths
...
DisplayDebug currently works but DebugDisplay does not.
error[E0277]: `PathBuf` doesn't implement `std::fmt::Display`
--> tests/test_path.rs:36:13
|
32 | #[derive(Error, Debug)]
| ----- in this derive macro expansion
...
36 | #[error("debug:{0:?} display:{0}")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^ `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
= help: the trait `std::fmt::Display` is implemented for `Var<'_, T>`
= 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-10 12:57:31 -08:00
David Tolnay
49be39dee1
Release 2.0.2
2024-11-09 22:28:33 -08:00
David Tolnay
2e43d26838
Release 1.0.69
...
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEERijF2Cz/ZdaBZKeK+boUO5X/bYIFAmcwUXUACgkQ+boUO5X/
bYLChBAAiO3silasUL5uxnLNwC3r9IaprdnBHRr69V/7UFGcAWQEN/JMxl+klN4p
/4J8cIJmOFvdR7slB7tEtgkb3P4H4UlO9QGmKcHc86W6TXDztthC2b4eaXKEEPRN
lYxs92iaHBuDSZR7DQ8NjhnPwLFlhoePFGrThNscy7e7e2Qtf2RP4pEeOQwTKIM5
KlBlgpFK+81hP7SruhZHiYMBkA4vbQvwqoRTw+Xszi+olDdnqEntM+ySgfbpbl1H
Gdp7C3+FhTRMSJLofNvEzBTWYv4coOZoDhkEJgXLdRhVomkFIHHMFYiaG6ldXp7n
95hd8KXOfGF41oLmfuPkWDdXgZYlawale4a+g4W9P4Aa8ecW6fW15EvrrZEPtyt7
fVApcMWWn8s174u4inaE2v5FY2gs2lOlxPCVvRUPB16R1T8XJhSHi4VWgKKSo/Jo
gDDLvP+pSRHrC9qIlnkP0XuSK5GjVdymGalUlyUe9JAXmxP90m9jUBYH15WTrTjn
qf0g4KYh6YgOYnUKU3qbYdkNlipjR5I/ISknBgDXcNipGdG1UdBRkGTbA2IquewV
XD/SGhQ8az35pY4SYQRf3yS33DbNNCcBovBQe3u+phHhinGzils6A8ehK5NduxzL
jyRJlq9mvE7+gkTzozKUkJFLLiT7RP9DtQy+yOlos9sHvJQTsI8=
=OL7Q
-----END PGP SIGNATURE-----
gpgsig -----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEERijF2Cz/ZdaBZKeK+boUO5X/bYIFAmcwUicACgkQ+boUO5X/
bYLv1A//bx+ux6KQd6+f8pAesRkXppDTtvSm0TNuMigFFBfXPE/JWlB995eOm1Wy
LlECgl8hOEf4NF4eiqdgNiqa1n6sY8neqiMDjW4rwl4kaX8dDkBWVEX4Lym8Q3Xt
9OcdiNQOdlVoimeFkizfjDEpYywaeleSNurQ1Id2P/VgWrhnaIRUymYzni+fS98H
HCaAmlf+dfvyyiVNlikJAg/DrMCXKyiX4jVu8KZ6PHJvvfrbS/VXqrh9+tah1vxg
u1DxChokNIllt0Fm+3laFYg/5WwSJuHdn1mJDkh1kWxmdryKIb4Y+dAx6Xp/6BKb
YefRZGUlChrQzbhxTQ6F6GXZqMeV0JJKknYPQ7+Cm1kQDtYS7tCueiUWT/82ZFnD
ETGKIFJuFxnV0YcX0cNCRGo/ZJW5rmnhIFMwYbIma4q9j7zg+Fwn9XHeXbdyX6lC
99uB833bRah8VTL1n/kviLD12eYm7JbahFGluVlLEjFnDjI1oiCY4wNOEJ2let83
CO4FGrA+JGa0DTp9e4zZjnG1ObxtgTVn2p5J6qwzsiczx2Bcw3GEEan254gMiDTo
60w2+ZYYqZe8HWBBINTtUqDPHHfc1ZBIWQk8me7rJuMuH2fT8ihpoordc7YSa269
taBtVxbQYRT3dIwf4LE7VOng+/IN6f7V6Y6aQZldR3t8cyugHYk=
=6xu0
-----END PGP SIGNATURE-----
Merge 1.x (1.0.69) into 2.x (master)
2024-11-09 22:26:47 -08:00
David Tolnay
41938bd3a0
Release 1.0.69
2024-11-09 22:23:49 -08:00
David Tolnay
9d6506e860
Merge pull request #382 from dtolnay/hang
...
Fix fallback fmt expression parser hang
2024-11-09 22:22:58 -08:00
David Tolnay
591a44d9a3
Fix fallback fmt expression parser hang
2024-11-09 22:21:24 -08:00
David Tolnay
5b36e375c2
Add ui test of invalid expression syntax in display attribute
2024-11-09 22:16:01 -08:00
David Tolnay
1048a35b26
Prevent upload-artifact step from causing CI failure
...
This step has been failing way more than reasonable across my various repos.
With the provided path, there will be 1 file uploaded
Artifact name is valid!
Root directory input is valid!
Attempt 1 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 3000 ms...
Attempt 2 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 6029 ms...
Attempt 3 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 8270 ms...
Attempt 4 of 5 failed with error: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact. Retrying request in 12577 ms...
Error: Failed to CreateArtifact: Failed to make request after 5 attempts: Request timeout: /twirp/github.actions.results.api.v1.ArtifactService/CreateArtifact
2024-11-08 21:45:50 -05:00
David Tolnay
a17d956bd8
Clean up unneeded var
2024-11-08 14:29:08 -05:00
David Tolnay
4066d537a3
Release 2.0.1
2024-11-08 14:25:42 -05:00
David Tolnay
8956be264b
Merge pull request #380 from dtolnay/var
...
Print field's address instead of local's address for Pointer
2024-11-08 13:32:26 -05:00
David Tolnay
16f8dc1bef
Wrap interpolated variables to forward Pointer correctly
2024-11-08 13:30:06 -05:00
David Tolnay
46586dde23
Add test that {:p} prints the right address
...
thread 'test_pointer' panicked at tests/test_display.rs:265:5:
assertion `left == right` failed
left: "0x7fbbd7df10"
right: "0x7fac000e30"
2024-11-08 13:25:50 -05:00
David Tolnay
5dfd2cc112
Merge pull request #379 from dtolnay/binding
...
Emit rebinding only for interpolations that refer to a field
2024-11-08 13:25:40 -05:00
David Tolnay
fb59da6f7b
Resolve let_and_return clippy lint
...
warning: returning the result of a `let` binding from a block
--> impl/src/fmt.rs:67:21
|
63 | / let member = match int.parse::<u32>() {
64 | | Ok(index) => MemberUnraw::Unnamed(Index { index, span }),
65 | | Err(_) => return Ok(()),
66 | | };
| |______________________- unnecessary `let` binding
67 | member
| ^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#let_and_return
= note: `-W clippy::let-and-return` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::let_and_return)]`
help: return the expression directly
|
63 ~
64 ~ match int.parse::<u32>() {
65 + Ok(index) => MemberUnraw::Unnamed(Index { index, span }),
66 + Err(_) => return Ok(()),
67 + }
|
2024-11-08 13:22:56 -05:00
David Tolnay
3ee0a4dfdb
Emit rebinding only for interpolations that refer to a field
2024-11-08 13:16:55 -05:00