Skip to content

Commit c0a3e5d

Browse files
package config
1 parent e093615 commit c0a3e5d

File tree

4 files changed

+23
-9
lines changed

4 files changed

+23
-9
lines changed

dune-project

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(lang dune 3.0)
22
(using cinaps 1.0)
33
(name lsp)
4+
(version "1.19.0+jst")
45

56
(implicit_transitive_deps false)
67

@@ -38,7 +39,7 @@ possible and does not make any assumptions about IO.
3839
(uutf (>= 1.0.2))
3940
(odoc :with-doc)
4041
(ocaml (>= 4.14))
41-
(ppx_yojson_conv :with-dev-setup)))
42+
ppx_yojson_conv))
4243

4344
(package
4445
(name ocaml-lsp-server)
@@ -56,7 +57,7 @@ possible and does not make any assumptions about IO.
5657
dyn
5758
stdune
5859
(fiber (and (>= 3.1.1) (< 4.0.0)))
59-
(ocaml (and (>= 5.3) (< 5.4)))
60+
ocaml
6061
xdg
6162
ordering
6263
dune-build-info
@@ -70,13 +71,18 @@ possible and does not make any assumptions about IO.
7071
(csexp (>= 1.5))
7172
(ocamlformat-rpc-lib (>= 0.21.0))
7273
(odoc :with-doc)
73-
(merlin-lib (and (>= 5.4) (< 6.0)))
74-
(ppx_yojson_conv :with-dev-setup)))
74+
(odoc-parser (= 2.0.0))
75+
(merlin-lib (= "5.2.1-502+jst"))
76+
ppx_yojson_conv
77+
core_unix
78+
async
79+
cmarkit))
7580

7681
(package
7782
(name jsonrpc)
7883
(synopsis "Jsonrpc protocol implemenation")
7984
(description "See https://www.jsonrpc.org/specification")
8085
(depends
8186
(ocaml (>= 4.08))
82-
(odoc :with-doc)))
87+
(odoc :with-doc)
88+
(yojson (and (>= 2.0.0) (< 3.0.0)))))

jsonrpc.opam

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3+
version: "1.19.0+jst"
34
synopsis: "Jsonrpc protocol implemenation"
45
description: "See https://www.jsonrpc.org/specification"
56
maintainer: ["Rudi Grinberg <[email protected]>"]
@@ -22,6 +23,7 @@ depends: [
2223
"dune" {>= "3.0"}
2324
"ocaml" {>= "4.08"}
2425
"odoc" {with-doc}
26+
"yojson" {>= "2.0.0" & < "3.0.0"}
2527
]
2628
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
2729
build: [

lsp.opam

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3+
version: "1.19.0+jst"
34
synopsis: "LSP protocol implementation in OCaml"
45
description: """
56

@@ -32,7 +33,7 @@ depends: [
3233
"uutf" {>= "1.0.2"}
3334
"odoc" {with-doc}
3435
"ocaml" {>= "4.14"}
35-
"ppx_yojson_conv" {with-dev-setup}
36+
"ppx_yojson_conv"
3637
]
3738
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
3839
build: [

ocaml-lsp-server.opam

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3+
version: "1.19.0+jst"
34
synopsis: "LSP Server for OCaml"
45
description: "An LSP server for OCaml."
56
maintainer: ["Rudi Grinberg <[email protected]>"]
@@ -31,7 +32,7 @@ depends: [
3132
"dyn"
3233
"stdune"
3334
"fiber" {>= "3.1.1" & < "4.0.0"}
34-
"ocaml" {>= "5.3" & < "5.4"}
35+
"ocaml"
3536
"xdg"
3637
"ordering"
3738
"dune-build-info"
@@ -45,8 +46,12 @@ depends: [
4546
"csexp" {>= "1.5"}
4647
"ocamlformat-rpc-lib" {>= "0.21.0"}
4748
"odoc" {with-doc}
48-
"merlin-lib" {>= "5.4" & < "6.0"}
49-
"ppx_yojson_conv" {with-dev-setup}
49+
"odoc-parser" {= "2.0.0"}
50+
"merlin-lib" {= "5.2.1-502+jst"}
51+
"ppx_yojson_conv"
52+
"core_unix"
53+
"async"
54+
"cmarkit"
5055
]
5156
dev-repo: "git+https://github.com/ocaml/ocaml-lsp.git"
5257
build: [

0 commit comments

Comments
 (0)