diff options
author | Blaž Hrastnik | 2021-03-18 05:29:38 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-03-18 05:29:38 +0000 |
commit | 5237084d98c10bbef44fcbfa9bdd13315aa9964f (patch) | |
tree | 680022ba8fe97b6ab72a4797d5f609996ec29bad /helix-lsp/src | |
parent | 59e60241864dcf711325109423d74cf6e8b6463d (diff) |
Don't publicly re-export once_cell in lsp.
Diffstat (limited to 'helix-lsp/src')
-rw-r--r-- | helix-lsp/src/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/helix-lsp/src/lib.rs b/helix-lsp/src/lib.rs index 29868e82..936c897c 100644 --- a/helix-lsp/src/lib.rs +++ b/helix-lsp/src/lib.rs @@ -5,8 +5,6 @@ mod transport; pub use jsonrpc_core as jsonrpc; pub use lsp_types as lsp; -pub use once_cell::sync::{Lazy, OnceCell}; - pub use client::Client; pub use lsp::{Position, Url}; |