swactor/crates/mvp-system/src/lib.rs

37 lines
875 B
Rust
Raw Normal View History

2026-06-23 13:51:34 +00:00
#[cfg(test)]
extern crate self as mvp_system;
#[cfg(feature = "local-e2e")]
pub mod actors;
2026-06-23 07:12:45 +00:00
pub mod arena_manager;
#[cfg(feature = "local-e2e")]
pub mod dashboard;
2026-06-23 13:51:34 +00:00
pub mod device_bridge;
#[cfg(feature = "local-e2e")]
pub mod distribution_stack;
2026-06-23 13:51:34 +00:00
pub mod driver_pumps;
pub mod edge_establisher;
pub mod gpu_worker_ctl;
pub mod gpu_worker_egress_producer;
pub mod gpu_worker_ingress_parser;
pub mod gpu_worker_process_adapter;
pub mod membership_pool_readiness;
pub mod node_boot_lifecycle;
pub mod observability_surface;
pub mod orchestrator_run_fsm;
pub mod orchestrator_token_endpoint;
pub mod resource_inventory;
pub mod run_plan;
pub mod shared_ring_helper_abi;
pub mod stage_controller;
pub mod telemetry;
2026-06-23 13:51:34 +00:00
pub mod tx_rx_edge_actor;
pub mod weight_lifecycle;
#[cfg(test)]
mod tests;
#[cfg(test)]
#[path = "tests/driver_pumps_guarantees.rs"]
mod driver_pumps_guarantees;