this repo has no description
1opam-version: "2.0" 2synopsis: 3 "OCaml toolchain to work with WebAssembly, including and interpreter" 4description: 5 "owi is an OCaml toolchain to work with WebAssembly. It provides an interpreter as an executable and a library." 6maintainer: ["Léo Andrès <contact@ndrs.fr>"] 7authors: [ 8 "Léo Andrès <contact@ndrs.fr>" 9 "Pierre Chambart <pierre.chambart@ocamlpro.com>" 10] 11license: "ISC" 12tags: ["owi" "ocaml" "webassembly" "wasm" "interpreter" "compiler"] 13homepage: "https://github.com/ocamlpro/owi" 14bug-reports: "https://github.com/ocamlpro/owi/issues" 15depends: [ 16 "dune" {>= "3.0"} 17 "ocaml" {>= "4.13"} 18 "integers" {>= "0.5.1"} 19 "sedlex" 20 "menhir" {build & >= "20220210"} 21 "ocaml_intrinsics" 22 "uutf" 23 "bisect_ppx" {with-test & >= "2.5" & dev} 24 "ocb" {with-test & >= "0.1" & dev} 25 "odoc" {with-doc} 26 "bos" {with-test} 27 "mdx" {with-test & >= "2.1"} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "@install" 39 "@runtest" {with-test} 40 "@doc" {with-doc} 41 ] 42] 43dev-repo: "git+https://github.com/ocamlpro/owi.git" 44available: (arch = "x86_64" | arch = "arm64") & os != "win32" & arch != "x86_32" 45url { 46 src: "https://github.com/ocamlpro/owi/archive/refs/tags/0.1.tar.gz" 47 checksum: [ 48 "sha256=eb0ee5a97a5310f30002b573f37ae69617688aa95d5e346ef4938ec91972102a" 49 "sha512=6aa67b3a8f999965788429a4fdb3f729570958815ab3b55d113d2c52a3fa22485e9e2872fddde5428eb0f726a0ccd5748ba216b4dc337d2b5f01f0bf27fe7701" 50 ] 51}