turbo_debug_console/lib.rs
1// Copyright (c) 2026 Enzo Lombardi
2// SPDX-License-Identifier: MIT
3
4//! Library half of `turbo-debug-console`, so integration tests can drive the
5//! pipeline and the protocol without a terminal.
6
7pub mod ansiasm;
8pub mod cmd;
9pub mod pipeline;
10pub mod proto;
11pub mod registry;
12pub mod session;
13pub mod streamview;
14pub mod tracefmt;