meta: Lock down the version of ocamlformat

This commit is contained in:
Elliott Cable 2023-08-03 20:24:09 +00:00
parent 9fd5fd8536
commit c82cd6d798
2 changed files with 9 additions and 1 deletions

View file

@ -27,7 +27,13 @@
ambient-context ambient-context
(odoc :with-doc) (odoc :with-doc)
(pbrt (pbrt
(>= 2.3))) (>= 2.3))
(ocaml-lsp-server :with-dev-setup)
(ocamlformat
(and
:with-dev-setup
(>= 0.24)
(< 0.25))))
(depopts (depopts
(trace (trace
(>= 0.1))) (>= 0.1)))

View file

@ -15,6 +15,8 @@ depends: [
"ambient-context" "ambient-context"
"odoc" {with-doc} "odoc" {with-doc}
"pbrt" {>= "2.3"} "pbrt" {>= "2.3"}
"ocaml-lsp-server" {with-dev-setup}
"ocamlformat" {with-dev-setup & >= "0.24" & < "0.25"}
] ]
depopts: [ depopts: [
"trace" {>= "0.1"} "trace" {>= "0.1"}