axedom-executor 0.1.0-alpha.1

Parallel task execution and barriers for Axedom.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! axedom-executor — part of the Axedom WASM-first runtime platform (alpha).

/// Published API version for this crate.
pub const SPECIFICATION_VERSION: &str = env!("CARGO_PKG_VERSION");

/// Runtime API entry (enabled in a future release).
pub fn runtime_unavailable() -> ! {
    unimplemented!(
        "{}{SPECIFICATION_VERSION} is in active development; see https://github.com/axedom/axedom for releases",
        concat!(env!("CARGO_PKG_NAME"), " ")
    );
}