this repo has no description
1opam-version: "2.0" 2synopsis: "An embeddable Lua 2.5 interpreter implemented in OCaml" 3maintainer: "Daniil Baturin <daniil+opam@baturin.org>" 4authors: [ 5 "Norman Ramsey <nr@cs.tufts.edu>" 6 "Christian Lindig <lindig@gmail.com>" 7 "Daniil Baturin <daniil+lua-ml@baturin.org>" 8] 9license: "BSD-2-Clause" 10homepage: "https://github.com/lindig/lua-ml" 11bug-reports: "https://github.com/lindig/lua-ml/issues" 12depends: [ 13 "dune" {>= "2.9"} 14 "ocaml" {>= "4.07.0"} 15 "odoc" {with-doc} 16] 17build: [ 18 ["dune" "subst"] {dev} 19 [ 20 "dune" 21 "build" 22 "-p" 23 name 24 "-j" 25 jobs 26 "--promote-install-files=false" 27 "@install" 28 "@runtest" {with-test} 29 "@doc" {with-doc} 30 ] 31 ["dune" "install" "-p" name "--create-install-files" name] 32] 33dev-repo: "git+https://github.com/lindig/lua-ml.git" 34url { 35 src: "https://github.com/lindig/lua-ml/archive/refs/tags/0.9.4.tar.gz" 36 checksum: [ 37 "md5=ccc750966b4fbc925a9bfb802fd848a4" 38 "sha512=3127b73bff078a40825fc5216559e3fe37fb1c4faf0121adc3a06acac6fb77dec82ba150d1f78ac1953266720ea3bedd4f7e2b21ddce1e0250417b36e1327eee" 39 ] 40} 41post-messages: [ 42 "Lua-ML does build with OCaml 5.0.0, however, it only works with it as long as the code is single-threaded: \ 43 trying to execute Lua code in more than one domain may incur in confusing, unpredictable failures." {ocaml:version >= "5.0"} 44]