aboutsummaryrefslogtreecommitdiff
path: root/crates/gen_lsp_server/src/stdio.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/gen_lsp_server/src/stdio.rs')
-rw-r--r--crates/gen_lsp_server/src/stdio.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/crates/gen_lsp_server/src/stdio.rs b/crates/gen_lsp_server/src/stdio.rs
index 81397bb2a..3d8a1712a 100644
--- a/crates/gen_lsp_server/src/stdio.rs
+++ b/crates/gen_lsp_server/src/stdio.rs
@@ -1,11 +1,9 @@
1use std::{ 1use std::{
2 io::{stdin, stdout},
2 thread, 3 thread,
3 io::{
4 stdout, stdin,
5 },
6}; 4};
7 5
8use crossbeam_channel::{Receiver, Sender, bounded}; 6use crossbeam_channel::{bounded, Receiver, Sender};
9 7
10use {RawMessage, Result}; 8use {RawMessage, Result};
11 9