arkhe_forge/lib.rs
1//! # ArkheForge Runtime — Umbrella Re-export
2//!
3//! The single Runtime entry point shell crates depend on. Bundles the L1
4//! primitive surface and the L2 services behind one facade. Do not import
5//! `arkhe-forge-core` or `arkhe-forge-platform` directly — depend on this
6//! umbrella so version alignment and feature gating stay coherent.
7//!
8//! Public API is in pre-freeze; semantic breaks land only on a minor bump.
9
10#![forbid(unsafe_code)]
11#![warn(missing_docs)]
12
13pub use arkhe_forge_core as core;
14pub use arkhe_forge_platform as platform;
15
16/// Umbrella re-export semver.
17pub const SEMVER: (u16, u16, u16) = (0, 13, 0);