Get rid of failure: ra_lsp_server & ra_project_model

This commit is contained in:
Muhammad Mominul Huque 2019-06-15 02:42:56 +06:00
parent a931fb1ef6
commit 9709bd39ca
No known key found for this signature in database
GPG key ID: 37AF141540DE557D
10 changed files with 32 additions and 36 deletions

View file

@ -9,5 +9,5 @@ pub mod req;
pub mod init;
mod world;
pub type Result<T> = ::std::result::Result<T, ::failure::Error>;
pub type Result<T> = std::result::Result<T, Box<dyn std::error::Error + Send + Sync>>;
pub use crate::{caps::server_capabilities, main_loop::main_loop, main_loop::LspError, init::InitializationOptions};