Drop redundant dependency on atomic
Some checks failed
github pages / deploy (push) Has been cancelled
build / build4 (4.14.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.19.0, 5.1.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.19.0, 5.2.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.19.0, 5.3.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.20.1, 5.1.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.20.1, 5.2.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.20.1, 5.3.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.22.0, 5.1.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.22.0, 5.2.x, ubuntu-latest) (push) Has been cancelled
build / build5 (1.22.0, 5.3.x, ubuntu-latest) (push) Has been cancelled

The linol library already depends on OCaml ≥ 4.14

(cherry picked from commit 630a6226bc)
This commit is contained in:
Vincent Laporte 2024-02-16 06:14:21 +01:00 committed by Simon Cruanes
parent 11efe16420
commit e43f2e588a
3 changed files with 1 additions and 3 deletions

View file

@ -32,7 +32,6 @@
(and (and
(>= "1.19") (>= "1.19")
(< "1.23"))) (< "1.23")))
atomic
("jsonrpc" ("jsonrpc"
(and (and
(>= "1.19") (>= "1.19")

View file

@ -13,7 +13,6 @@ depends: [
"logs" "logs"
"trace" {>= "0.4"} "trace" {>= "0.4"}
"lsp" {>= "1.19" & < "1.23"} "lsp" {>= "1.19" & < "1.23"}
"atomic"
"jsonrpc" {>= "1.19" & < "1.23"} "jsonrpc" {>= "1.19" & < "1.23"}
"ocaml" {>= "4.14"} "ocaml" {>= "4.14"}
"odoc" {with-doc} "odoc" {with-doc}

View file

@ -3,4 +3,4 @@
(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 lsp logs threads trace.core atomic)) (libraries yojson lsp logs threads trace.core))