Skip to content

Commit 030a5ce

Browse files
committed
update dune-project
1 parent f4265a2 commit 030a5ce

File tree

2 files changed

+24
-2
lines changed

2 files changed

+24
-2
lines changed

interpreter/dune-project

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
(lang dune 2.9)
22

3-
(name "wasm")
3+
(name wasm)
44

55
(generate_opam_files true)
66

7+
(license Apache-2.0)
8+
9+
(source
10+
(github WebAssembly/spec))
11+
12+
(authors "Andreas Rossberg <[email protected]")
13+
(maintainers "Andreas Rossberg <[email protected]")
14+
715
(package
8-
(name "wasm"))
16+
(name wasm)
17+
(synopsis "Library to read and write WebAssembly (Wasm) files and manipulate their AST")
18+
(tags (wasm webassembly spec interpreter))
19+
(depends
20+
(ocaml (>= 4.12))))

interpreter/wasm.opam

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,16 @@
11
# This file is generated by dune, edit dune-project instead
22
opam-version: "2.0"
3+
synopsis:
4+
"Library to read and write WebAssembly (Wasm) files and manipulate their AST"
5+
maintainer: ["Andreas Rossberg <[email protected]"]
6+
authors: ["Andreas Rossberg <[email protected]"]
7+
license: "Apache-2.0"
8+
tags: ["wasm" "webassembly" "spec" "interpreter"]
9+
homepage: "https://github.com/WebAssembly/spec"
10+
bug-reports: "https://github.com/WebAssembly/spec/issues"
311
depends: [
412
"dune" {>= "2.9"}
13+
"ocaml" {>= "4.12"}
514
"odoc" {with-doc}
615
]
716
build: [
@@ -20,3 +29,4 @@ build: [
2029
]
2130
["dune" "install" "-p" name "--create-install-files" name]
2231
]
32+
dev-repo: "git+https://github.com/WebAssembly/spec.git"

0 commit comments

Comments
 (0)