We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84494d1 commit 5753981Copy full SHA for 5753981
Cargo.toml
@@ -171,7 +171,6 @@ borrowed_box = "allow"
171
borrow_deref_ref = "allow"
172
derivable_impls = "allow"
173
derived_hash_with_manual_eq = "allow"
174
-explicit_auto_deref = "allow"
175
field_reassign_with_default = "allow"
176
forget_non_drop = "allow"
177
format_collect = "allow"
crates/project-model/src/manifest_path.rs
@@ -36,7 +36,7 @@ impl ManifestPath {
36
}
37
38
pub fn canonicalize(&self) -> ! {
39
- (&**self).canonicalize()
+ (**self).canonicalize()
40
41
42
0 commit comments