Skip to content

Commit 0ab028f

Browse files
committed
fix(engine): add constraint to OCaml version
1 parent 34af447 commit 0ab028f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

engine/dune-project

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
(synopsis "The engine of hax, a Rust verification tool")
2121
(description "Hax is divided in two: a frontend (written in Rust) and an engine (written in OCaml). This is the engine.")
2222
(depends
23-
ocaml
23+
(ocaml (>= "4.14.1"))
2424
dune
2525
(base (= "0.16"))
2626
(core (= "0.16"))

engine/hax-engine.opam

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage: "https://github.com/hacspec/hax"
1111
doc: "https://hacspec.org/hax/"
1212
bug-reports: "https://github.com/hacspec/hax/issues"
1313
depends: [
14-
"ocaml"
14+
"ocaml" {>= "4.14.1"}
1515
"dune" {>= "3.0"}
1616
"base" {= "0.16"}
1717
"core" {= "0.16"}

0 commit comments

Comments
 (0)