diff options
author | Ivan Tham | 2021-06-07 14:34:19 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-10 13:00:08 +0000 |
commit | 7cc13fefe9bd09ea778a0eb8c26bf133e6ad2476 (patch) | |
tree | 764c662e47f12134a8a7f20211573243100777a5 /helix-lsp | |
parent | 1a3a92463405fdd4738fbdbfda212aef58a2919d (diff) |
Derive debug without feature
Note that this also removed those `finish_non_exhaustive()`.
Diffstat (limited to 'helix-lsp')
-rw-r--r-- | helix-lsp/Cargo.toml | 3 | ||||
-rw-r--r-- | helix-lsp/src/client.rs | 2 | ||||
-rw-r--r-- | helix-lsp/src/lib.rs | 2 | ||||
-rw-r--r-- | helix-lsp/src/transport.rs | 2 |
4 files changed, 3 insertions, 6 deletions
diff --git a/helix-lsp/Cargo.toml b/helix-lsp/Cargo.toml index 7fd05492..1384ce67 100644 --- a/helix-lsp/Cargo.toml +++ b/helix-lsp/Cargo.toml @@ -7,9 +7,6 @@ license = "MPL-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html -[features] -debug = ["helix-core/debug"] - [dependencies] helix-core = { path = "../helix-core" } diff --git a/helix-lsp/src/client.rs b/helix-lsp/src/client.rs index 739ff9c2..c2ea11b8 100644 --- a/helix-lsp/src/client.rs +++ b/helix-lsp/src/client.rs @@ -16,7 +16,7 @@ use tokio::{ sync::mpsc::{channel, UnboundedReceiver, UnboundedSender}, }; -#[cfg_attr(feature = "debug", derive(Debug))] +#[derive(Debug)] pub struct Client { _process: Child, server_tx: UnboundedSender<Payload>, diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index 197ca27d..6d40cf0a 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -172,7 +172,7 @@ impl Notification { } } -#[cfg_attr(feature = "debug", derive(Debug))] +#[derive(Debug)] pub struct Registry { inner: HashMap<LanguageId, Arc<Client>>, 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>, |