mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-04 17:28:48 +00:00
1834bae5b8
This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway
16 lines
360 B
Rust
16 lines
360 B
Rust
mod caps;
|
|
mod cargo_target_spec;
|
|
mod conv;
|
|
mod main_loop;
|
|
mod markdown;
|
|
mod project_model;
|
|
mod vfs_filter;
|
|
pub mod req;
|
|
pub mod init;
|
|
mod world;
|
|
|
|
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
|
|
pub use crate::{
|
|
caps::server_capabilities, init::InitializationOptions, main_loop::main_loop,
|
|
main_loop::LspError,
|
|
};
|