mirror of
https://github.com/c-cube/linol.git
synced 2025-12-05 19:00:34 -05:00
Fix constraints
This commit is contained in:
parent
87af2c521c
commit
a45fa943fd
4 changed files with 12 additions and 12 deletions
12
dune-project
12
dune-project
|
|
@ -31,12 +31,12 @@
|
||||||
("lsp"
|
("lsp"
|
||||||
(and
|
(and
|
||||||
(>= "1.19")
|
(>= "1.19")
|
||||||
(< "1.22")))
|
(<= "1.22")))
|
||||||
atomic
|
atomic
|
||||||
("jsonrpc"
|
("jsonrpc"
|
||||||
(and
|
(and
|
||||||
(>= "1.19")
|
(>= "1.19")
|
||||||
(< "1.22")))
|
(<= "1.22")))
|
||||||
("ocaml"
|
("ocaml"
|
||||||
(>= "4.14"))
|
(>= "4.14"))
|
||||||
("odoc" :with-doc)))
|
("odoc" :with-doc)))
|
||||||
|
|
@ -57,11 +57,11 @@
|
||||||
("lsp"
|
("lsp"
|
||||||
(and
|
(and
|
||||||
(>= "1.19")
|
(>= "1.19")
|
||||||
(< "1.22")))
|
(<= "1.22")))
|
||||||
("jsonrpc"
|
("jsonrpc"
|
||||||
(and
|
(and
|
||||||
(>= "1.19")
|
(>= "1.19")
|
||||||
(< "1.22")))
|
(<= "1.22")))
|
||||||
("odoc" :with-doc)))
|
("odoc" :with-doc)))
|
||||||
|
|
||||||
(package
|
(package
|
||||||
|
|
@ -82,9 +82,9 @@
|
||||||
("lsp"
|
("lsp"
|
||||||
(and
|
(and
|
||||||
(>= "1.19")
|
(>= "1.19")
|
||||||
(< "1.22")))
|
(<= "1.22")))
|
||||||
("jsonrpc"
|
("jsonrpc"
|
||||||
(and
|
(and
|
||||||
(>= "1.19")
|
(>= "1.19")
|
||||||
(< "1.22")))
|
(<= "1.22")))
|
||||||
("odoc" :with-doc)))
|
("odoc" :with-doc)))
|
||||||
|
|
|
||||||
|
|
@ -14,8 +14,8 @@ depends: [
|
||||||
"base-unix"
|
"base-unix"
|
||||||
"eio" {>= "1.0" & < "2.0"}
|
"eio" {>= "1.0" & < "2.0"}
|
||||||
"eio_main" {with-test}
|
"eio_main" {with-test}
|
||||||
"lsp" {>= "1.19" & < "1.22"}
|
"lsp" {>= "1.19" & <= "1.22"}
|
||||||
"jsonrpc" {>= "1.19" & < "1.22"}
|
"jsonrpc" {>= "1.19" & <= "1.22"}
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
|
|
|
||||||
|
|
@ -13,8 +13,8 @@ depends: [
|
||||||
"linol" {= version}
|
"linol" {= version}
|
||||||
"base-unix"
|
"base-unix"
|
||||||
"lwt" {>= "5.1" & < "6.0"}
|
"lwt" {>= "5.1" & < "6.0"}
|
||||||
"lsp" {>= "1.19" & < "1.22"}
|
"lsp" {>= "1.19" & <= "1.22"}
|
||||||
"jsonrpc" {>= "1.19" & < "1.22"}
|
"jsonrpc" {>= "1.19" & <= "1.22"}
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
|
|
|
||||||
|
|
@ -12,9 +12,9 @@ depends: [
|
||||||
"yojson" {>= "1.6"}
|
"yojson" {>= "1.6"}
|
||||||
"logs"
|
"logs"
|
||||||
"trace" {>= "0.4"}
|
"trace" {>= "0.4"}
|
||||||
"lsp" {>= "1.19" & < "1.22"}
|
"lsp" {>= "1.19" & <= "1.22"}
|
||||||
"atomic"
|
"atomic"
|
||||||
"jsonrpc" {>= "1.19" & < "1.22"}
|
"jsonrpc" {>= "1.19" & <= "1.22"}
|
||||||
"ocaml" {>= "4.14"}
|
"ocaml" {>= "4.14"}
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
]
|
]
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue