Drop redundant dependency on atomic

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
parent 11efe16420
commit 4869731895
No known key found for this signature in database
GPG key ID: EBD582ADDDB1F81F
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))