#ocaml #ffi #interop #rust

ocaml-interop

Utilities for Rust and OCaml interoperability

29 releases

0.8.8 Mar 23, 2022
0.8.7 Oct 12, 2021
0.8.5 Aug 16, 2021
0.8.4 May 18, 2021
0.4.4 Nov 3, 2020

#804 in Command line utilities

Download history 2546/week @ 2022-12-06 2630/week @ 2022-12-13 3599/week @ 2022-12-20 839/week @ 2022-12-27 1829/week @ 2023-01-03 2352/week @ 2023-01-10 3012/week @ 2023-01-17 2883/week @ 2023-01-24 2524/week @ 2023-01-31 2859/week @ 2023-02-07 2278/week @ 2023-02-14 1756/week @ 2023-02-21 2291/week @ 2023-02-28 1914/week @ 2023-03-07 2045/week @ 2023-03-14 3085/week @ 2023-03-21

9,598 downloads per month
Used in 2 crates (via ocaml)

MIT license

125KB
2.5K SLoC

ocaml-interop

build crate documentation license

Zinc-iron alloy coating is used in parts that need very good corrosion protection.

API IS CONSIDERED UNSTABLE AT THE MOMENT AND IS LIKELY TO CHANGE IN THE FUTURE

ocaml-interop is an OCaml<->Rust FFI with an emphasis on safety inspired by caml-oxide, ocaml-rs and CAMLroot.

Read the full documentation here.

Report issues on Github.

A quick taste

Convert between plain OCaml and Rust values

let rust_string = ocaml_string.to_rust();
// `cr` = OCaml runtime handle
let new_ocaml_string = rust_string.to_ocaml(cr);

Convert between Rust and OCaml structs/records

(* OCaml *)
type my_record = {
  string_field: string;
  tuple_field: (string * int);
}
// Rust
struct MyStruct {
    string_field: String,
    tuple_field: (String, i64),
}

impl_conv_ocaml_record! {
    MyStruct {
        string_field: String,
        tuple_field: (String, i64),
    }
}

// ...

let rust_struct = ocaml_record.to_rust();
let new_ocaml_record = rust_struct.to_ocaml(cr);

Convert between OCaml and Rust variants/enums

(* OCaml *)
type my_variant =
  | EmptyTag
  | TagWithInt of int
// Rust
enum MyEnum {
    EmptyTag,
    TagWithInt(i64),
}

impl_conv_ocaml_variant! {
    MyEnum {
        EmptyTag,
        TagWithInt(OCamlInt),
    }
}

// ...

let rust_enum = ocaml_variant.to_rust();
let new_ocaml_variant = rust_enum.to_ocaml(cr);

Call OCaml functions from Rust

(* OCaml *)
Callback.register "ocaml_print_endline" print_endline
// Rust
ocaml! {
    fn ocaml_print_endline(s: String);
}

// ...

let ocaml_string = "hello OCaml!".to_boxroot(cr);
ocaml_print_endline(cr, &ocaml_string);

Call Rust functions from OCaml

// Rust
ocaml_export! {
    pub fn twice_boxed_int(cr, num: OCamlRef<OCamlInt64>) -> OCaml<OCamlInt64> {
        let num = num.to_rust(cr);
        let result = num * 2;
        result.to_ocaml(cr)
    }
}
(* OCaml *)
external rust_twice_boxed_int: int64 -> int64 = "twice_boxed_int"

(* ... *)

let result = rust_twice_boxed_int 123L in
(* ... *)

Dependencies

~140–285KB