24 releases (14 breaking)
0.24.0 | Aug 30, 2024 |
---|---|
0.23.0 | Jun 6, 2022 |
0.22.3 | Apr 19, 2022 |
0.22.1 | Mar 23, 2022 |
0.14.0 | Jul 3, 2020 |
#1013 in Development tools
55,173 downloads per month
Used in 4 crates
(2 directly)
30KB
638 lines
ocaml-rs - OCaml extensions in Rust
ocaml-rs
allows for OCaml extensions to be written directly in Rust with no C stubs. It was originally forked from raml, but has been almost entirely re-written thanks to support from the OCaml Software Foundation.
Works with OCaml versions 4.10.0
and up
Please report any issues on github
NOTE: While ocaml-rs
can be used safely, it does not prevent a wide range of potential errors or mistakes. It should be thought of as a Rust implementation of the existing C API. ocaml-interop can be used to perform safe OCaml/Rust interop.
Documentation
Getting started
ocaml-rust-starter is a basic example to help get started with ocaml-rs
.
On the Rust side, you will need to add the following to your Cargo.toml
:
ocaml = "*"
or
ocaml = {git = "https://github.com/zshipko/ocaml-rs"}
For macOS you will need also to add the following to your project's .cargo/config
file:
[build]
rustflags = ["-C", "link-args=-Wl,-undefined,dynamic_lookup"]
This is because macOS doesn't allow undefined symbols in dynamic libraries by default.
Additionally, if you plan on releasing to opam, you will need to vendor your Rust dependencies to avoid making network requests during the build phase, since reaching out to crates.io/github will be blocked by the opam sandbox. To do this you should run:
cargo vendor
then follow the instructions for editing .cargo/config
Build options
By default, building ocaml-sys
will invoke the ocamlopt
command to figure out the version and location of the OCaml compiler. There are a few environment variables to control this.
OCAMLOPT
(default:ocamlopt
) is the command that will invokeocamlopt
OCAML_VERSION
(default: result of$OCAMLOPT -version
) is the target runtime OCaml version.OCAML_WHERE_PATH
(default: result of$OCAMLOPT -where
) is the path of the OCaml standard library.OCAML_INTEROP_NO_CAML_STARTUP
(default: unset) can be set when loading anocaml-rs
library into an OCaml bytecode runtime (such asutop
) to avoid linking issues withcaml_startup
If both OCAML_VERSION
and OCAML_WHERE_PATH
are present, their values are used without invoking ocamlopt
. If any of those two env variables is undefined, then ocamlopt
will be invoked to obtain both values.
Defining the OCAML_VERSION
and OCAML_WHERE_PATH
variables is useful for saving time in CI environments where an OCaml install is not really required (to run clippy
for example).
Features
derive
- enabled by default, adds
#[ocaml::func]
and friends andderive
implementations forFromValue
andToValue
- enabled by default, adds
link
- link the native OCaml runtime, this should only be used when no OCaml code will be linked statically
no-std
- Allows
ocaml
to be used in#![no_std]
environments like MirageOS
- Allows
Dependencies
~7–290KB