2026-02-23 04:44:46 +00:00
|
|
|
pub mod action;
|
|
|
|
|
pub mod actor;
|
|
|
|
|
pub mod event;
|
|
|
|
|
pub mod local;
|
|
|
|
|
pub mod message;
|
|
|
|
|
pub mod mock;
|
2026-02-24 09:12:28 +00:00
|
|
|
pub mod pipeline;
|
2026-02-23 04:44:46 +00:00
|
|
|
pub mod session;
|
|
|
|
|
pub mod spawn;
|
|
|
|
|
pub mod types;
|
2026-02-24 09:12:28 +00:00
|
|
|
pub mod yaml;
|
2026-02-23 04:44:46 +00:00
|
|
|
|
|
|
|
|
pub use action::{OutputStream, ProcessAction};
|
|
|
|
|
pub use actor::ProcessActor;
|
|
|
|
|
pub use event::ProcessEvent;
|
|
|
|
|
pub use local::LocalDriver;
|
|
|
|
|
pub use message::{ProcessCommand, ProcessNotification};
|
|
|
|
|
pub use mock::MockDriver;
|
refactor: remove dead code, consolidate files (#52)
Remove the unused TCP transport and dead CLI/simulation scaffolding and collapse scattered single-purpose modules into consolidated files across the dashboard, process, and simulation crates.
- crates/transport: drop the TCP transport (src/tcp.rs and its tcp feature), leaving only ed25519 identity and encoding utilities behind the iroh transport
- crates/dashboard: collapse actor_detail_html/actors_html/dashboard_html/topology_html into a single html.rs, drop command/parse.rs, and inline the trace types into lib.rs
- crates/process: fold driver, pipeline_types, queue, subscriber, waker, and local pipes/signal/wait into local/mod.rs, pipeline.rs, and a unified types.rs, consolidating the public re-exports
- crates/simulation: remove the ci subdirectory (local_sim, sim) and dead node/config/trace modules, and flatten the distribution subdirectory into top-level files
- crates/datastore: remove the unused store_cli, cli, and in-memory storage, and deduplicate crypto.rs across datastore and distribution (about 190 lines of shared code removed)
- crates/distribution: drop dead codec code and trim the messages module
Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
2026-02-25 14:33:04 +00:00
|
|
|
pub use pipeline::{
|
|
|
|
|
JobComplete, JobDefinition, JobFailure, JobId, JobProgress, JobStatus, JobSuccess,
|
|
|
|
|
LocalPipelineConfig, LocalStartJob, PipelineId, PipelineStatus,
|
|
|
|
|
};
|
2026-02-23 04:44:46 +00:00
|
|
|
pub use session::{ProcessSession, ProcessState};
|
|
|
|
|
pub use spawn::{spawn_local_process, spawn_process};
|
2026-06-23 15:42:28 +00:00
|
|
|
pub use types::{
|
|
|
|
|
EventQueue, ExitStatus, FlowControl, ProcessDriver, ProcessError, ProcessMode, ProcessSpec,
|
|
|
|
|
ProcessWaker, PtySize, Signal,
|
|
|
|
|
};
|