Skip to content

Commit fc7a475

Browse files
committed
Add missing depends
Signed-off-by: Sora Morimoto <[email protected]>
1 parent ffea198 commit fc7a475

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

dune-project

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ possible and does not make any assumptions about IO.
3232
(depends
3333
(jsonrpc (= :version))
3434
yojson
35-
(ppx_yojson_conv_lib (>= "v0.14"))
35+
(ppx_yojson_conv (>= "v0.14"))
36+
ppx_yojson_conv_lib
3637
(cinaps :with-test)
3738
(ppx_expect (and (>= v0.17.0) :with-test))
3839
(uutf (>= 1.0.2))
@@ -49,7 +50,8 @@ possible and does not make any assumptions about IO.
4950
(lsp (= :version))
5051
(jsonrpc (= :version))
5152
(re (>= 1.5.0))
52-
(ppx_yojson_conv_lib (>= "v0.14"))
53+
(ppx_yojson_conv (>= "v0.14"))
54+
ppx_yojson_conv_lib
5355
(dune-rpc (>= 3.4.0))
5456
(chrome-trace (>= 3.3.0))
5557
dyn

lsp.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@ depends: [
2626
"dune" {>= "3.0"}
2727
"jsonrpc" {= version}
2828
"yojson"
29-
"ppx_yojson_conv_lib" {>= "v0.14"}
29+
"ppx_yojson_conv" {>= "v0.14"}
30+
"ppx_yojson_conv_lib"
3031
"cinaps" {with-test}
3132
"ppx_expect" {>= "v0.17.0" & with-test}
3233
"uutf" {>= "1.0.2"}

ocaml-lsp-server.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ depends: [
2525
"lsp" {= version}
2626
"jsonrpc" {= version}
2727
"re" {>= "1.5.0"}
28-
"ppx_yojson_conv_lib" {>= "v0.14"}
28+
"ppx_yojson_conv" {>= "v0.14"}
29+
"ppx_yojson_conv_lib"
2930
"dune-rpc" {>= "3.4.0"}
3031
"chrome-trace" {>= "3.3.0"}
3132
"dyn"

0 commit comments

Comments
 (0)