From 44ed035ed0460ab1fc3f9ea9ebe180683f04791a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Muqiu=20Han=20=28=E9=9F=A9=E6=9A=AE=E7=A7=8B=29?= Date: Thu, 4 Jan 2024 18:50:13 +0800 Subject: [PATCH] [interpreter] Add dune dependencies (#1717) --- interpreter/dune-project | 4 +++- interpreter/wasm.opam | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/interpreter/dune-project b/interpreter/dune-project index 8392b339f5..559dd40b0e 100644 --- a/interpreter/dune-project +++ b/interpreter/dune-project @@ -20,4 +20,6 @@ (tags (wasm webassembly spec interpreter)) (depends (ocaml (>= 4.12)) - (menhir (>= 20220210)))) + (menhir (>= 20220210)) + (js_of_ocaml (>= 5.5.2)) + (js_of_ocaml-ppx (>= 5.5.2)))) diff --git a/interpreter/wasm.opam b/interpreter/wasm.opam index ad8b60af23..4350c1a814 100644 --- a/interpreter/wasm.opam +++ b/interpreter/wasm.opam @@ -12,6 +12,8 @@ depends: [ "dune" {>= "2.9"} "ocaml" {>= "4.12"} "menhir" {>= "20220210"} + "js_of_ocaml" {>= "5.5.2"} + "js_of_ocaml-ppx" {>= "5.5.2"} "odoc" {with-doc} ] build: [