Skip to content

Commit

Permalink
update dune-project
Browse files Browse the repository at this point in the history
  • Loading branch information
zapashcanon committed Jul 24, 2023
1 parent f4265a2 commit 030a5ce
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
16 changes: 14 additions & 2 deletions interpreter/dune-project
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
(lang dune 2.9)

(name "wasm")
(name wasm)

(generate_opam_files true)

(license Apache-2.0)

(source
(github WebAssembly/spec))

(authors "Andreas Rossberg <rossberg@mpi-sws.org")
(maintainers "Andreas Rossberg <rossberg@mpi-sws.org")

(package
(name "wasm"))
(name wasm)
(synopsis "Library to read and write WebAssembly (Wasm) files and manipulate their AST")
(tags (wasm webassembly spec interpreter))
(depends
(ocaml (>= 4.12))))
10 changes: 10 additions & 0 deletions interpreter/wasm.opam
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"Library to read and write WebAssembly (Wasm) files and manipulate their AST"
maintainer: ["Andreas Rossberg <rossberg@mpi-sws.org"]
authors: ["Andreas Rossberg <rossberg@mpi-sws.org"]
license: "Apache-2.0"
tags: ["wasm" "webassembly" "spec" "interpreter"]
homepage: "https://github.com/WebAssembly/spec"
bug-reports: "https://github.com/WebAssembly/spec/issues"
depends: [
"dune" {>= "2.9"}
"ocaml" {>= "4.12"}
"odoc" {with-doc}
]
build: [
Expand All @@ -20,3 +29,4 @@ build: [
]
["dune" "install" "-p" name "--create-install-files" name]
]
dev-repo: "git+https://github.com/WebAssembly/spec.git"

0 comments on commit 030a5ce

Please sign in to comment.