Skip to content

Commit

Permalink
[interpreter]: Add depends to dune-project
Browse files Browse the repository at this point in the history
  • Loading branch information
muqiuhan committed Jan 4, 2024
1 parent 4877171 commit 6e19f23
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
25 changes: 18 additions & 7 deletions interpreter/dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,32 @@
(name wasm)

(generate_opam_files true)

(using menhir 2.1)

(implicit_transitive_deps false)

(license Apache-2.0)

(source
(github WebAssembly/spec))
(github WebAssembly/spec))

(authors "Andreas Rossberg <[email protected]")

(maintainers "Andreas Rossberg <[email protected]")

(package
(name wasm)
(synopsis "Library to read and write WebAssembly (Wasm) files and manipulate their AST")
(tags (wasm webassembly spec interpreter))
(depends
(ocaml (>= 4.12))
(menhir (>= 20220210))))
(name wasm)
(synopsis
"Library to read and write WebAssembly (Wasm) files and manipulate their AST")
(tags
(wasm webassembly spec interpreter))
(depends
(ocaml
(>= 4.12))
(menhir
(>= 20220210))
(js_of_ocaml
(>= 5.5.2))
(js_of_ocaml-ppx
(>= 5.5.2))))
2 changes: 2 additions & 0 deletions interpreter/wasm.opam
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down

0 comments on commit 6e19f23

Please sign in to comment.