arkhe-forge 0.13.0

ArkheForge Runtime umbrella crate: re-exports arkhe-forge-core (L1 primitives) + arkhe-forge-platform (L2 services). Shell authors depend on this crate only; compliance-tier features proxy through to the platform crate.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! # ArkheForge Runtime — Umbrella Re-export
//!
//! The single Runtime entry point shell crates depend on. Bundles the L1
//! primitive surface and the L2 services behind one facade. Do not import
//! `arkhe-forge-core` or `arkhe-forge-platform` directly — depend on this
//! umbrella so version alignment and feature gating stay coherent.
//!
//! Public API is in pre-freeze; semantic breaks land only on a minor bump.

#![forbid(unsafe_code)]
#![warn(missing_docs)]

pub use arkhe_forge_core as core;
pub use arkhe_forge_platform as platform;

/// Umbrella re-export semver.
pub const SEMVER: (u16, u16, u16) = (0, 13, 0);