axedom 0.1.0-alpha.1

Official entry crate for Axedom, a WASM-first runtime platform with ECS and UI (alpha).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Official entry crate for Axedom (alpha).

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

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