From ae7afda89db25916fa312187dda0165233767d96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20Roch=C3=A9?= Date: Sun, 22 Sep 2024 22:46:56 +0800 Subject: [PATCH] adjust opam constraints --- dune-project | 14 ++++++++++---- ppx_deriving_jsonschema.opam | 12 ++++++++---- 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/dune-project b/dune-project index 72e1bb3..db52a02 100644 --- a/dune-project +++ b/dune-project @@ -7,9 +7,13 @@ (source (github ahrefs/ppx_deriving_jsonschema)) -(authors "ahrefs") +(authors + "Louis Roché " + "Ahrefs ") -(maintainers "ahrefs") +(maintainers + "Louis Roché " + "Ahrefs ") (license MIT) @@ -21,9 +25,11 @@ (description "ppx_deriving_jsonschema is a ppx rewriter that generates jsonschema from ocaml types") (depends - ocaml + (ocaml + (>= "4.08.0")) dune - ppxlib + (ppxlib + (>= "0.24.0")) (yojson :with-test) (ocamlformat :with-dev-setup) (ocaml-lsp-server :with-dev-setup)) diff --git a/ppx_deriving_jsonschema.opam b/ppx_deriving_jsonschema.opam index 78bee80..d97f855 100644 --- a/ppx_deriving_jsonschema.opam +++ b/ppx_deriving_jsonschema.opam @@ -3,17 +3,21 @@ opam-version: "2.0" synopsis: "Jsonschema generator for ppx_deriving" description: "ppx_deriving_jsonschema is a ppx rewriter that generates jsonschema from ocaml types" -maintainer: ["ahrefs"] -authors: ["ahrefs"] +maintainer: [ + "Louis Roché " "Ahrefs " +] +authors: [ + "Louis Roché " "Ahrefs " +] license: "MIT" tags: ["jsonschema" "org:ahrefs" "syntax"] homepage: "https://github.com/ahrefs/ppx_deriving_jsonschema" doc: "https://ahrefs.github.io/ppx_deriving_jsonschema/" bug-reports: "https://github.com/ahrefs/ppx_deriving_jsonschema/issues" depends: [ - "ocaml" + "ocaml" {>= "4.08.0"} "dune" {>= "3.16"} - "ppxlib" + "ppxlib" {>= "0.24.0"} "yojson" {with-test} "ocamlformat" {with-dev-setup} "ocaml-lsp-server" {with-dev-setup}