asdf-overlay-node 1.2.2

Asdf Overlay Node Addon
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod conv;
mod overlay;
mod surface;
mod util;

use mimalloc::MiMalloc;
use neon::prelude::*;

#[global_allocator]
static GLOBAL: MiMalloc = MiMalloc;

#[neon::main]
fn main(mut cx: ModuleContext) -> NeonResult<()> {
    surface::export_module_functions(&mut cx)?;
    overlay::export_module_functions(&mut cx)?;
    Ok(())
}