From 630a6226bcea654d8c7873bcc89e0e3703c6690a 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 --- linol.opam | 1 - src/dune | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/linol.opam b/linol.opam index 9e913223..baae74b4 100644 --- a/linol.opam +++ b/linol.opam @@ -14,7 +14,6 @@ depends: [ "dune" { >= "2.0" } "yojson" { >= "1.6" } "logs" - "atomic" "trace" { >= "0.4" } "lsp" { >= "1.17" & < "1.18" } "jsonrpc" { >= "1.17" & < "1.18" } diff --git a/src/dune b/src/dune index 458eb429..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 atomic threads trace.core)) + (libraries yojson lsp logs threads trace.core))