From b10009fc46eac98f7afaf3279eb18e0961e53c28 Mon Sep 17 00:00:00 2001 From: Lukasz Stafiniak Date: Mon, 22 Jul 2024 11:49:13 +0200 Subject: [PATCH] Missing dependency lower bounds See: https://github.com/ocaml/opam-repository/pull/26265/commits/0518f992827ca3f9b6336100a954a88be18a517a --- cudajit.opam | 4 ++-- dune-project | 6 ++++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/cudajit.opam b/cudajit.opam index 30bbfef..95a4216 100644 --- a/cudajit.opam +++ b/cudajit.opam @@ -13,9 +13,9 @@ homepage: "https://github.com/lukstafi/ocaml-cudajit" doc: "https://github.com/lukstafi/ocaml-cudajit/blob/master/README.md" bug-reports: "https://github.com/lukstafi/ocaml-cudajit/issues" depends: [ - "ocaml" + "ocaml" {>= "4.08"} "dune" {>= "3.11"} - "ctypes" + "ctypes" {>= "0.14.0"} "ctypes-foreign" "sexplib0" "ppx_sexp_conv" diff --git a/dune-project b/dune-project index a4cd012..d7f5332 100644 --- a/dune-project +++ b/dune-project @@ -27,9 +27,11 @@ (description "Bindings to manually selected parts of `lcuda` and `lnvrtc`, with a few types and conversion functions to facilitate use.") (depends - ocaml + (ocaml + (>= 4.08)) dune - ctypes + (ctypes + (>= 0.14.0)) ctypes-foreign sexplib0 ppx_sexp_conv