ocaml-rs
provides functions and
wrappers to interact with the OCaml runtime which implements a garbage collector
to manage memory automatically. The library allows developers to write functions
in Rust that can be called from OCaml and vice versa. It provides automatic
conversion between OCaml and Rust value representations. The users can use
macros on the Rust side like ocaml::FromValue
and ocaml::ToValue
to convert
back and forth the values without thinking about the garbage
collector.
Macros ocaml::func
in conjunction with ocaml::sig
can be used on functions
to generate codes which will be compatible with the OCaml runtime.
More information is available in the ocaml-rs book.
Even if ocaml-rs
provides some macros, the user will need to write the OCaml
definitions with the corresponding types and use external definitions. Also,
macros to access nested values in structures are not provided in ocaml-rs
.
The goal of ocaml-gen
and ocaml-gen-derive
is to provide automatic binding
generations and to add macros easing the development of large applications.
It is meant to be used in conjunction with ocaml-rs
.
SECURITY WARNING: this is still an experimental library, you should verify that the bindings generated are correct if you are using this in production.
See the ocaml-gen/README for more information.
opam switch create ./ 4.14.0
opam install merlin ocamlformat.$(awk -F = '$1 == "version" {print $2}' .ocamlformat)
dune build @runtest
If you change the file tests/ocamlgen_test_stubs/src/bin/main.rs
or anything related to code generation, you will need to update tests/expected_bindings.ml
. You can use:
dune build @runtest --auto-promote
to rely on dune
to update the file. You will need to commit it to make the CI happy.
You can check the recording I made when I first introduced the tool internally.
An automatic release is set up with GitHub actions. To make a new release of ocaml-gen and ocaml-gen-derive:
ocaml-gen-derive
in ocaml-gen/Cargo.toml
to the new
release version.git tag -m "VERSION" -a "x.y.z"
git push --tags