You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Cargo.toml
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ resolver = "2"
4
4
5
5
[workspace.package]
6
6
edition = "2021"
7
-
rust-version = "1.84"
7
+
rust-version = "1.85"
8
8
homepage = "https://docs.astral.sh/ruff"
9
9
documentation = "https://docs.astral.sh/ruff"
10
10
repository = "https://github.com/astral-sh/ruff"
@@ -215,6 +215,7 @@ similar_names = "allow"
215
215
single_match_else = "allow"
216
216
too_many_lines = "allow"
217
217
needless_continue = "allow"# An explicit continue can be more readable, especially if the alternative is an empty block.
218
+
unnecessary_debug_formatting = "allow"# too many instances, the display also doesn't quote the path which is often desired in logs where we use them the most often.
218
219
# Without the hashes we run into a `rustfmt` bug in some snapshot tests, see #13250
0 commit comments