this repo has no description
1opam-version: "2.0" 2bug-reports: "https://github.com/LaurentMazare/ocaml-wasmtime/issues" 3homepage: "https://github.com/LaurentMazare/ocaml-wasmtime" 4dev-repo: "git+https://github.com/LaurentMazare/ocaml-wasmtime.git" 5maintainer: "Laurent Mazare <lmazare@gmail.com>" 6authors: [ "Laurent Mazare" ] 7 8build: [["dune" "build" "-p" name "-j" jobs]] 9 10run-test: [ 11 ["dune" "runtest" "-p" name "-j" jobs] { os-distribution != "alpine" } 12] 13 14depends: [ 15 "base" {>= "v0.13.0" & < "v0.17"} 16 "ctypes" {>= "0.5"} 17 "ctypes-foreign" 18 "dune" {>= "2.7.0"} 19 "dune-configurator" 20 "libwasmtime" {>= "0.21.0" & < "0.22.0"} 21 "ocaml" {>= "4.10"} 22 "ppx_expect" {>= "v0.13.0" & < "v0.15" & with-test} 23 "stdio" 24] 25 26available: arch = "x86_64" & (os = "linux" | os = "macos") 27 28synopsis: "Wasmtime bindings for OCaml" 29description: """ 30Bindings for Wasmtime, a small and efficient 31runtime for WebAssembly. 32""" 33 34url { 35 src: "https://github.com/LaurentMazare/ocaml-wasmtime/archive/v0.0.2.tar.gz" 36 checksum: [ 37 "md5=87759321ed91f5de130572cfbbb9138c" 38 "sha512=1cd5382a2cf725faa2d7e224cbc00f41ed4309a655d9b8f6f53beadac607d5c61029910e3e3f1ed44a025f9a2ce5b4fbe90b8638309a1cefd46a33a146526e6b" 39 ] 40}