2018-09-01 15:16:08 +00:00
|
|
|
mod caps;
|
2019-01-12 18:00:58 +00:00
|
|
|
mod cargo_target_spec;
|
2018-09-01 15:16:08 +00:00
|
|
|
mod conv;
|
|
|
|
mod main_loop;
|
2019-01-30 02:39:09 +00:00
|
|
|
mod markdown;
|
2018-09-02 08:37:16 +00:00
|
|
|
mod project_model;
|
2018-10-15 21:44:23 +00:00
|
|
|
pub mod req;
|
2019-03-06 09:34:38 +00:00
|
|
|
pub mod init;
|
2019-06-01 07:31:40 +00:00
|
|
|
mod world;
|
2018-09-01 15:16:08 +00:00
|
|
|
|
2019-06-14 20:42:56 +00:00
|
|
|
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
|
2019-07-04 20:05:17 +00:00
|
|
|
pub use crate::{
|
|
|
|
caps::server_capabilities, init::InitializationOptions, main_loop::main_loop,
|
|
|
|
main_loop::LspError,
|
|
|
|
};
|