Skip to main content

axedom_executor/
spec.rs

1//! axedom-executor — part of the Axedom WASM-first runtime platform (alpha).
2
3/// Published API version for this crate.
4pub const SPECIFICATION_VERSION: &str = env!("CARGO_PKG_VERSION");
5
6/// Runtime API entry (enabled in a future release).
7pub fn runtime_unavailable() -> ! {
8    unimplemented!(
9        "{}{SPECIFICATION_VERSION} is in active development; see https://github.com/axedom/axedom for releases",
10        concat!(env!("CARGO_PKG_NAME"), " ")
11    );
12}