diff options
Diffstat (limited to 'helix-lsp/src/transport.rs')
-rw-r--r-- | helix-lsp/src/transport.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-lsp/src/transport.rs b/helix-lsp/src/transport.rs index 876de929..e8068323 100644 --- a/helix-lsp/src/transport.rs +++ b/helix-lsp/src/transport.rs @@ -31,7 +31,7 @@ enum ServerMessage { Call(jsonrpc::Call), } -#[cfg_attr(feature = "debug", derive(Debug))] +#[derive(Debug)] pub struct Transport { client_tx: UnboundedSender<jsonrpc::Call>, client_rx: UnboundedReceiver<Payload>, |