Packages

`yex` is a Elixir port of `yrs`, a Rust library that has tools for making CRDTs easier to work with. It's a work in progress and not ready for production use yet!.

Current section

Files

Jump to
yex native yex_native src lib.rs
Raw

native/yex_native/src/lib.rs

#[rustler::nif]
fn add(a: i64, b: i64) -> i64 {
a + b
}
rustler::init!("Elixir.Yex.Native", [add]);