diff --git a/crates/base-db/src/input.rs b/crates/base-db/src/input.rs index 9ceaebb91e1..e7f0c4ec29b 100644 --- a/crates/base-db/src/input.rs +++ b/crates/base-db/src/input.rs @@ -136,10 +136,7 @@ fn deref(&self) -> &str { #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum CrateOrigin { /// Crates that are from crates.io official registry, - CratesIo { - repo: Option, - name: Option, - }, + CratesIo { repo: Option, name: Option }, /// Crates that are provided by the language, like std, core, proc-macro, ... Lang(LangCrateOrigin), }