mun_runtime/
lib.rs

1//! The Mun Runtime C API
2//!
3//! The Mun Runtime C API exposes runtime functionality using the C ABI. This can be used to
4//! integrate the Mun Runtime into other languages that allow interoperability with C.
5#![warn(missing_docs)]
6
7pub mod gc;
8pub mod runtime;
9
10pub mod function;
11
12#[macro_use]
13#[cfg(test)]
14mod test_util;