mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
introduce project model
This commit is contained in:
parent
541170420b
commit
d752455637
3 changed files with 145 additions and 3 deletions
|
@ -13,12 +13,14 @@ extern crate log;
|
|||
extern crate drop_bomb;
|
||||
extern crate url_serde;
|
||||
extern crate walkdir;
|
||||
extern crate im;
|
||||
extern crate relative_path;
|
||||
extern crate cargo_metadata;
|
||||
|
||||
extern crate gen_lsp_server;
|
||||
extern crate libeditor;
|
||||
extern crate libanalysis;
|
||||
extern crate libsyntax2;
|
||||
extern crate gen_lsp_server;
|
||||
extern crate im;
|
||||
extern crate relative_path;
|
||||
|
||||
mod caps;
|
||||
pub mod req;
|
||||
|
@ -27,6 +29,7 @@ mod main_loop;
|
|||
mod vfs;
|
||||
mod path_map;
|
||||
mod server_world;
|
||||
mod project_model;
|
||||
|
||||
pub type Result<T> = ::std::result::Result<T, ::failure::Error>;
|
||||
pub use caps::server_capabilities;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue