aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_lsp_server/src/lib.rs
blob: 795f863838c6c223d8a80537b7a3c60671efc8a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod caps;
mod cargo_target_spec;
mod conv;
mod main_loop;
mod markdown;
mod project_model;
pub mod req;
pub mod config;
mod world;

pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
pub use crate::{
    caps::server_capabilities, config::ServerConfig, main_loop::main_loop, main_loop::LspError,
};