From 651c586035dfb4cf244aa9e9dacabfee9f579564 Mon Sep 17 00:00:00 2001 From: Noah Santschi-Cooney Date: Mon, 26 Sep 2022 18:35:06 +0100 Subject: [PATCH] formatting --- crates/base-db/src/input.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) 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), }