celox
celox is the Rust host API for the Celox RTL simulator. External frontend
crates use its low-level Simulator::from_frontend hook after lowering their
own artifact through celox-frontend-sdk.
A frontend crate should wrap that hook with a constructor named for its own artifact:
pub use Simulator;
Applications then use the frontend API and do not depend on Celox's bridge artifact model:
use ;
let artifact = load?;
let mut sim = from_my_artifact?;
See the external frontend guide for the complete adapter pattern and artifact format limits.
Celox is experimental and its Rust API is not yet covered by a 1.0 stability guarantee.