lunatic-runtime 0.13.2

An actor platform built on WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Depending on the environment that the `lunatic` binary is invoked from, it may behave
//! differently. All the different modes of working are defined in this module.

// If invoked as part of a `cargo test` command.
pub(crate) mod cargo_test;
// Default mode, if no other mode could be detected.
pub(crate) mod execution;

mod common;
mod control;
mod init;
mod node;
mod run;