summaryrefslogtreecommitdiff
path: root/support/texlab/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'support/texlab/src/lib.rs')
-rw-r--r--support/texlab/src/lib.rs7
1 files changed, 2 insertions, 5 deletions
diff --git a/support/texlab/src/lib.rs b/support/texlab/src/lib.rs
index 45b96fb265..46ee3ddd1c 100644
--- a/support/texlab/src/lib.rs
+++ b/support/texlab/src/lib.rs
@@ -9,9 +9,9 @@ mod options;
pub mod parser;
mod server;
pub mod syntax;
-pub(crate) mod util;
+pub mod util;
-pub use self::{options::*, server::Server};
+pub use self::{client::LspClient, options::*, server::Server};
#[salsa::jar(db = Db)]
pub struct Jar(
@@ -116,6 +116,3 @@ pub(crate) fn normalize_uri(uri: &mut lsp_types::Url) {
uri.set_fragment(None);
}
-
-#[cfg(test)]
-mod tests;