fleetcom 0.10.0

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

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