From 5237084d98c10bbef44fcbfa9bdd13315aa9964f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bla=C5=BE=20Hrastnik?= Date: Thu, 18 Mar 2021 14:29:38 +0900 Subject: [PATCH] Don't publicly re-export once_cell in lsp. --- helix-lsp/src/lib.rs | 2 -- 1 file changed, 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};