aboutsummaryrefslogtreecommitdiff
path: root/helix-lsp
diff options
context:
space:
mode:
Diffstat (limited to 'helix-lsp')
-rw-r--r--helix-lsp/src/client.rs2
-rw-r--r--helix-lsp/src/transport.rs4
2 files changed, 3 insertions, 3 deletions
diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs
index 8de4b95a..8a3aabd9 100644
--- a/helix-lsp/src/client.rs
+++ b/helix-lsp/src/client.rs
@@ -61,7 +61,7 @@ impl Client {
let (incoming, outgoing) = Transport::start(reader, writer, stderr);
- let client = Client {
+ let client = Self {
_process: process,
outgoing,
diff --git a/helix-lsp/src/transport.rs b/helix-lsp/src/transport.rs
index 4a5ae45a..dd42f7bb 100644
--- a/helix-lsp/src/transport.rs
+++ b/helix-lsp/src/transport.rs
@@ -75,7 +75,7 @@ impl Transport {
}
async fn recv(
- reader: &mut (impl AsyncBufRead + Unpin),
+ reader: &mut (impl AsyncBufRead + Unpin + Send),
headers: &mut HashMap<String, String>,
) -> core::result::Result<Message, std::io::Error> {
// read headers
@@ -117,7 +117,7 @@ impl Transport {
}
async fn err(
- err: &mut (impl AsyncBufRead + Unpin),
+ err: &mut (impl AsyncBufRead + Unpin + Send),
) -> core::result::Result<(), std::io::Error> {
let mut line = String::new();
err.read_line(&mut line).await?;