fleetcom 0.9.0

A fleet-view supervisor for arbitrary shell commands.
1
2
3
4
5
6
7
8
9
10
11
12
//! Terminal reconstruction: each task's screen is rebuilt from raw PTY bytes,
//! serialized back to ANSI, framed over the wire, and formatted for display;
//! `input` runs the reverse direction, encoding client events into PTY bytes.

pub(crate) mod ansi;
pub(crate) mod emulator;
pub(crate) mod format;
pub(crate) mod frame;
// Differential emulator tests over recorded PTY output.
#[cfg(test)]
mod golden;
pub(crate) mod input;