test because opammmm

Signed-off-by: Sacha-Élie Ayoun <sachaayoun@gmail.com>
This commit is contained in:
Sacha-Élie Ayoun 2025-04-03 16:09:24 +01:00
parent 68314089ee
commit 09d9ccce04
13 changed files with 17 additions and 21 deletions

View file

@ -1,4 +1,6 @@
(lang dune 2.0)
(lang dune 3.0)
(using cinaps 1.0)
;(implicit_transitive_deps false)

View file

@ -8,7 +8,7 @@ license: "MIT"
homepage: "https://github.com/c-cube/linol"
bug-reports: "https://github.com/c-cube/linol/issues"
depends: [
"dune" {>= "2.0"}
"dune" {>= "3.0"}
"yojson" {>= "1.6"}
"linol" {= version}
"base-unix"
@ -17,7 +17,7 @@ depends: [
"odoc" {with-doc}
]
build: [
["dune" "subst"] {pinned}
["dune" "subst"] {dev}
[
"dune"
"build"

View file

@ -8,7 +8,7 @@ license: "MIT"
homepage: "https://github.com/c-cube/linol"
bug-reports: "https://github.com/c-cube/linol/issues"
depends: [
"dune" {>= "2.0"}
"dune" {>= "3.0"}
"yojson" {>= "1.6"}
"logs"
"trace" {>= "0.4"}
@ -18,7 +18,7 @@ depends: [
"ppx_yojson_conv_lib" {>= "v0.14"}
]
build: [
["dune" "subst"] {pinned}
["dune" "subst"] {dev}
[
"dune"
"build"

View file

@ -2,5 +2,5 @@
(name linol)
(public_name linol)
(private_modules log)
(flags :standard -warn-error -a+8 -open Linol_lsp.Import)
(libraries yojson linol_lsp logs threads trace.core))
(flags :standard -warn-error -a+8)
(libraries yojson logs threads trace.core lsp jsonrpc))

View file

@ -1,5 +1,5 @@
(library
(name linol_eio)
(public_name linol-eio)
(libraries eio eio.unix linol linol.lsp)
(flags :standard -warn-error -a -open Linol_lsp.Import))
(libraries eio eio.unix linol.lso linol.jsonrpc)
(flags :standard -warn-error -a))

View file

@ -1,4 +0,0 @@
(library
(name linol_lsp)
(public_name linol.lsp)
(libraries lsp jsonrpc))

View file

@ -1,3 +0,0 @@
module Lsp = Lsp0
module Jsonrpc = Jsonrpc0

View file

@ -1 +0,0 @@
include Jsonrpc

View file

@ -1 +0,0 @@
include Lsp

View file

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

2
src/linol_lsp.ml Normal file
View file

@ -0,0 +1,2 @@
module Lsp0 = Lsp
module Jsonrpc0 = Jsonrpc

View file

@ -1,5 +1,5 @@
(library
(name linol_lwt)
(public_name linol-lwt)
(libraries yojson lwt lwt.unix linol linol.lsp)
(flags :standard -warn-error -a -open Linol_lsp.Import))
(libraries yojson lwt lwt.unix linol linol.lsp linol.jsonrpc)
(flags :standard -warn-error -a))

2
vendor/ocaml-lsp vendored

@ -1 +1 @@
Subproject commit aae6986391a8519de3da6a7a341f2bd3376e0d2f
Subproject commit c9b55bcbb5471c6f1954bd82a8597b489e28cad7