avmnif-rs 0.1.0

Safe NIF toolkit for AtomVM written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![no_std]

extern crate alloc;

mod log;
mod term;
mod context;
mod registry;

pub use context::Context;
pub use term::{Term, NifResult};
pub use crate::log::log_info;

#[cfg(test)]
mod tests;