diff options
author | Kirill Bulatov <[email protected]> | 2020-01-15 18:20:20 +0000 |
---|---|---|
committer | Kirill Bulatov <[email protected]> | 2020-01-15 18:20:20 +0000 |
commit | d51cf7794d110b064fd0e8d53726b4608ec50d1a (patch) | |
tree | 4cc529cede52694d63626dc1746b0f0971eaadb3 /crates/ra_lsp_server | |
parent | 78a21253b494e573885ac8336bff6e93b401046f (diff) |
itertools::Either -> either::Either
Diffstat (limited to 'crates/ra_lsp_server')
-rw-r--r-- | crates/ra_lsp_server/Cargo.toml | 2 | ||||
-rw-r--r-- | crates/ra_lsp_server/src/main_loop/handlers.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/crates/ra_lsp_server/Cargo.toml b/crates/ra_lsp_server/Cargo.toml index 73bce8b08..579158780 100644 --- a/crates/ra_lsp_server/Cargo.toml +++ b/crates/ra_lsp_server/Cargo.toml | |||
@@ -28,7 +28,7 @@ ra_prof = { path = "../ra_prof" } | |||
28 | ra_vfs_glob = { path = "../ra_vfs_glob" } | 28 | ra_vfs_glob = { path = "../ra_vfs_glob" } |
29 | env_logger = { version = "0.7.1", default-features = false, features = ["humantime"] } | 29 | env_logger = { version = "0.7.1", default-features = false, features = ["humantime"] } |
30 | ra_cargo_watch = { path = "../ra_cargo_watch" } | 30 | ra_cargo_watch = { path = "../ra_cargo_watch" } |
31 | itertools = "0.8" | 31 | either = "1.5" |
32 | 32 | ||
33 | [dev-dependencies] | 33 | [dev-dependencies] |
34 | tempfile = "3" | 34 | tempfile = "3" |
diff --git a/crates/ra_lsp_server/src/main_loop/handlers.rs b/crates/ra_lsp_server/src/main_loop/handlers.rs index d76639474..9e9964880 100644 --- a/crates/ra_lsp_server/src/main_loop/handlers.rs +++ b/crates/ra_lsp_server/src/main_loop/handlers.rs | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | use std::{fmt::Write as _, io::Write as _}; | 4 | use std::{fmt::Write as _, io::Write as _}; |
5 | 5 | ||
6 | use itertools::Either; | 6 | use either::Either; |
7 | use lsp_server::ErrorCode; | 7 | use lsp_server::ErrorCode; |
8 | use lsp_types::{ | 8 | use lsp_types::{ |
9 | CallHierarchyIncomingCall, CallHierarchyIncomingCallsParams, CallHierarchyItem, | 9 | CallHierarchyIncomingCall, CallHierarchyIncomingCallsParams, CallHierarchyItem, |