2026-06-23 13:51:34 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
|
extern crate self as mvp_system;
|
|
|
|
|
|
2026-06-24 09:30:29 +00:00
|
|
|
pub mod actors;
|
2026-06-23 07:12:45 +00:00
|
|
|
pub mod arena_manager;
|
2026-06-24 09:30:29 +00:00
|
|
|
#[cfg(feature = "local-e2e")]
|
2026-06-25 12:30:18 +00:00
|
|
|
pub mod dashboard_view;
|
|
|
|
|
pub mod device_bridge;
|
2026-06-24 09:30:29 +00:00
|
|
|
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;
|
2026-06-28 18:54:02 +00:00
|
|
|
pub mod shard_fetch;
|
|
|
|
|
pub mod shard_weight_lifecycle;
|
2026-06-23 13:51:34 +00:00
|
|
|
pub mod shared_ring_helper_abi;
|
|
|
|
|
pub mod stage_controller;
|
2026-06-24 09:30:29 +00:00
|
|
|
pub mod telemetry;
|
2026-06-23 13:51:34 +00:00
|
|
|
pub mod tx_rx_edge_actor;
|
|
|
|
|
pub mod weight_lifecycle;
|
2026-06-28 18:54:02 +00:00
|
|
|
pub mod weight_shards;
|
2026-06-23 13:51:34 +00:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests;
|
|
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
#[path = "tests/driver_pumps_guarantees.rs"]
|
|
|
|
|
mod driver_pumps_guarantees;
|
2026-06-28 18:54:02 +00:00
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
#[path = "tests/shard_fetch_guarantees.rs"]
|
|
|
|
|
mod shard_fetch_guarantees;
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
#[path = "tests/shard_weight_lifecycle_guarantees.rs"]
|
|
|
|
|
mod shard_weight_lifecycle_guarantees;
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
#[path = "tests/weight_shards_guarantees.rs"]
|
|
|
|
|
mod weight_shards_guarantees;
|