From 25339faf6a31394266b24b899093eddfa330d182 Mon Sep 17 00:00:00 2001 From: Max Lang <17551908+just-max@users.noreply.github.com> Date: Thu, 7 Sep 2023 02:04:12 +0200 Subject: [PATCH] add ounit2 dep --- dune-project | 3 ++- less-power.opam | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/dune-project b/dune-project index 86df0ff..09a5ca8 100644 --- a/dune-project +++ b/dune-project @@ -17,7 +17,8 @@ (ocaml (= 5.0.0)) (xmlm (and (>= 1.4) (< 1.5))) (fileutils (and (>= 0.6) (< 0.7))) - (qcheck-core (and (>= 0.21) (< 0.22))) ; todo: other qcheck components, maybe separate into packages? + (qcheck-core (and (>= 0.21) (< 0.22))) + (ounit2 (and (>= 2.2) (< 2.3))) (mtime (and (>= 2.0) (< 2.1))) (fmt (and (>= 0.9) (< 0.10))) (ppxlib (and (>= 0.30) (< 0.31))) diff --git a/less-power.opam b/less-power.opam index 003f1c4..a405d00 100644 --- a/less-power.opam +++ b/less-power.opam @@ -17,6 +17,7 @@ depends: [ "xmlm" {>= "1.4" & < "1.5"} "fileutils" {>= "0.6" & < "0.7"} "qcheck-core" {>= "0.21" & < "0.22"} + "ounit2" {>= "2.2" & < "2.3"} "mtime" {>= "2.0" & < "2.1"} "fmt" {>= "0.9" & < "0.10"} "ppxlib" {>= "0.30" & < "0.31"}