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

39 lines
930 B
Rust
Raw Normal View History

2026-06-23 13:51:34 +00:00
#[cfg(test)]
extern crate self as mvp_system;
pub mod actors;
2026-06-23 07:12:45 +00:00
pub mod arena_manager;
#[cfg(feature = "local-e2e")]
2026-06-25 12:30:18 +00:00
pub mod dashboard_view;
pub mod device_bridge;
pub mod distribution_stack;
2026-06-28 07:57:56 +00:00
pub mod docker_cluster_provisioning;
2026-06-23 13:51:34 +00:00
pub mod driver_pumps;
pub mod edge_establisher;
2026-06-24 15:23:09 +00:00
pub mod engine_builder;
2026-06-23 13:51:34 +00:00
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;
2026-06-28 07:57:56 +00:00
pub mod node_provisioning;
2026-06-23 13:51:34 +00:00
pub mod observability_surface;
pub mod orchestrator_run_fsm;
pub mod orchestrator_token_endpoint;
2026-06-25 12:30:18 +00:00
pub mod provisioning;
2026-06-23 13:51:34 +00:00
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;