From ef185d5dc2e8be2baca69638c45b26961f74aadf Mon Sep 17 00:00:00 2001 From: Zolisa Bleki Date: Thu, 11 Jul 2024 19:48:24 +0200 Subject: [PATCH] Make `ppx_deriving` a test-only requirement. --- dune-project | 4 ++-- lib/dune | 3 --- zarr.opam | 4 ++-- 3 files changed, 4 insertions(+), 7 deletions(-) diff --git a/dune-project b/dune-project index 3cee8595..f221357f 100644 --- a/dune-project +++ b/dune-project @@ -23,13 +23,13 @@ dune (ocaml (>= 4.14.2)) yojson - ppx_deriving ezgzip owl stdint checkseum - (ounit2 :with-test) (odoc :with-doc) + (ounit2 :with-test) + (ppx_deriving :with-test) (bisect_ppx (and :dev (>= 2.5.0) :with-test))) (tags diff --git a/lib/dune b/lib/dune index 5dea14a2..f8899b0a 100644 --- a/lib/dune +++ b/lib/dune @@ -9,9 +9,6 @@ checkseum) (ocamlopt_flags (:standard -O3)) - (preprocess - (pps - ppx_deriving.show)) (instrumentation (backend bisect_ppx))) diff --git a/zarr.opam b/zarr.opam index 4735c344..1d5cd3bf 100644 --- a/zarr.opam +++ b/zarr.opam @@ -13,13 +13,13 @@ depends: [ "dune" {>= "3.15"} "ocaml" {>= "4.14.2"} "yojson" - "ppx_deriving" "ezgzip" "owl" "stdint" "checkseum" - "ounit2" {with-test} "odoc" {with-doc} + "ounit2" {with-test} + "ppx_deriving" {with-test} "bisect_ppx" {dev & >= "2.5.0" & with-test} ] build: [