From aae7605aff26d1a5c64f3aa4e46d2a447f5c74eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sacha-=C3=89lie=20Ayoun?= Date: Thu, 3 Apr 2025 16:45:42 +0100 Subject: [PATCH] re-expose lsp and jsonrpc without requiring lsp.linol and lsp. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Sacha-Élie Ayoun --- src/linol.ml | 4 ++++ vendor/lsp/dune | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/linol.ml b/src/linol.ml index 7b454b72..b9bb632c 100644 --- a/src/linol.ml +++ b/src/linol.ml @@ -3,6 +3,10 @@ Abstraction over The "Lsp" library, to make it easier to develop LSP servers in OCaml (but not necessarily {b for} OCaml). *) +module Imports = struct + module Lsp = Lsp + module Jsonrpc = Jsonrpc +end module type IO = Sigs.IO diff --git a/vendor/lsp/dune b/vendor/lsp/dune index d67c7436..95ebe38e 100644 --- a/vendor/lsp/dune +++ b/vendor/lsp/dune @@ -7,8 +7,4 @@ (lint (pps ppx_yojson_conv))) -(cinaps - (files types.ml types.mli) - (libraries lsp_gen)) - (ocamllex uri_lexer)