diff options
| author | Noah Santschi-Cooney <noah@santschi-cooney.ch> | 2022-09-26 18:35:06 +0100 |
|---|---|---|
| committer | Noah Santschi-Cooney <noah@santschi-cooney.ch> | 2022-09-26 18:35:06 +0100 |
| commit | 651c586035dfb4cf244aa9e9dacabfee9f579564 (patch) | |
| tree | 4f9e379f046619d5f78b39f2e5774243de0a7b1a | |
| parent | 60b432b7e9ad71e97680da2497fdb3576094d854 (diff) | |
| download | rust-651c586035dfb4cf244aa9e9dacabfee9f579564.tar.gz rust-651c586035dfb4cf244aa9e9dacabfee9f579564.zip | |
formatting
| -rw-r--r-- | crates/base-db/src/input.rs | 5 |
1 files changed, 1 insertions, 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 @@ impl ops::Deref for CrateName { #[derive(Debug, Clone, PartialEq, Eq, Hash)] pub enum CrateOrigin { /// Crates that are from crates.io official registry, - CratesIo { - repo: Option<String>, - name: Option<String>, - }, + CratesIo { repo: Option<String>, name: Option<String> }, /// Crates that are provided by the language, like std, core, proc-macro, ... Lang(LangCrateOrigin), } |
