From e43f2e588a31a34c589d0a022551820ed5f5a9a0 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 16 Feb 2024 06:14:21 +0100 Subject: [PATCH] Drop redundant dependency on atomic MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The linol library already depends on OCaml ≥ 4.14 (cherry picked from commit 630a6226bcea654d8c7873bcc89e0e3703c6690a) --- dune-project | 1 - linol.opam | 1 - src/dune | 2 +- 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/dune-project b/dune-project index c20ae7f1..b987704a 100644 --- a/dune-project +++ b/dune-project @@ -32,7 +32,6 @@ (and (>= "1.19") (< "1.23"))) - atomic ("jsonrpc" (and (>= "1.19") diff --git a/linol.opam b/linol.opam index 6e5964ee..3b624558 100644 --- a/linol.opam +++ b/linol.opam @@ -13,7 +13,6 @@ depends: [ "logs" "trace" {>= "0.4"} "lsp" {>= "1.19" & < "1.23"} - "atomic" "jsonrpc" {>= "1.19" & < "1.23"} "ocaml" {>= "4.14"} "odoc" {with-doc} diff --git a/src/dune b/src/dune index b4872003..965dc0be 100644 --- a/src/dune +++ b/src/dune @@ -3,4 +3,4 @@ (public_name linol) (private_modules log) (flags :standard -warn-error -a+8) - (libraries yojson lsp logs threads trace.core atomic)) + (libraries yojson lsp logs threads trace.core))