Skip to main content

rivetkit_core/
engine_process.rs

1//! The rivet-engine subprocess manager lives in the standalone
2//! `rivetkit-engine-process` crate so the CLI and other hosts can reuse the
3//! same resolution, spawn, reuse, and orphan-lifetime logic. This module
4//! re-exports it for existing in-crate callers.
5
6pub use rivetkit_engine_process::{
7	EngineProcessError, EngineProcessManager, EngineResolverConfig, ResolvedEngine, engine_db_path,
8	engine_env, resolve_engine_binary, resolve_engine_binary_path,
9};