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
in Cargo.toml files, a common pattern to see is dep.workspace = true. this is quite noisy as it pollutes the lhs of the assignment, so i typically prefer dep = { workspace = true } (which also has the nice benefit of working nicely with align_entries). an option to convert a.b = c to a = { b = c } would be great!
The text was updated successfully, but these errors were encountered:
in Cargo.toml files, a common pattern to see is
dep.workspace = true
. this is quite noisy as it pollutes the lhs of the assignment, so i typically preferdep = { workspace = true }
(which also has the nice benefit of working nicely withalign_entries
). an option to converta.b = c
toa = { b = c }
would be great!The text was updated successfully, but these errors were encountered: