diff options
Diffstat (limited to 'crates/rust-analyzer/src/bin/main.rs')
-rw-r--r-- | crates/rust-analyzer/src/bin/main.rs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/crates/rust-analyzer/src/bin/main.rs b/crates/rust-analyzer/src/bin/main.rs index eec76d415..047772d0c 100644 --- a/crates/rust-analyzer/src/bin/main.rs +++ b/crates/rust-analyzer/src/bin/main.rs | |||
@@ -6,14 +6,13 @@ mod args; | |||
6 | use std::convert::TryFrom; | 6 | use std::convert::TryFrom; |
7 | 7 | ||
8 | use lsp_server::Connection; | 8 | use lsp_server::Connection; |
9 | use ra_project_model::ProjectManifest; | ||
9 | use rust_analyzer::{ | 10 | use rust_analyzer::{ |
10 | cli, | 11 | cli, |
11 | config::{Config, LinkedProject}, | 12 | config::{Config, LinkedProject}, |
12 | from_json, Result, | 13 | from_json, Result, |
13 | }; | 14 | }; |
14 | 15 | use vfs::AbsPathBuf; | |
15 | use ra_db::AbsPathBuf; | ||
16 | use ra_project_model::ProjectManifest; | ||
17 | 16 | ||
18 | use crate::args::HelpPrinted; | 17 | use crate::args::HelpPrinted; |
19 | 18 | ||