This commit is contained in:
Simon Cruanes 2025-04-07 13:32:27 -04:00
parent f83580c8c1
commit 43839963e1
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
3 changed files with 8 additions and 2 deletions

View file

@ -3,4 +3,10 @@
(public_name linol) (public_name linol)
(private_modules log) (private_modules log)
(flags :standard -warn-error -a+8) (flags :standard -warn-error -a+8)
(libraries yojson logs threads trace.core (re_export linol.lsp) (re_export linol.jsonrpc))) (libraries
yojson
logs
threads
trace.core
(re_export linol.lsp)
(re_export linol.jsonrpc)))

View file

@ -3,6 +3,7 @@
See {{: https://www.jsonrpc.org/specification} the spec} *) See {{: https://www.jsonrpc.org/specification} the spec} *)
open Common_ open Common_
type json = Yojson.Safe.t type json = Yojson.Safe.t
module type IO = Sigs.IO module type IO = Sigs.IO

View file

@ -3,7 +3,6 @@
Abstraction over The "Lsp" library, to make it easier to develop Abstraction over The "Lsp" library, to make it easier to develop
LSP servers in OCaml (but not necessarily {b for} OCaml). *) LSP servers in OCaml (but not necessarily {b for} OCaml). *)
module type IO = Sigs.IO module type IO = Sigs.IO
(** {2 Re-export from vendored lsp} *) (** {2 Re-export from vendored lsp} *)