cersei_compression/lib.rs
1//! cersei-compression — Structural and command-aware compression for tool
2//! outputs in the Cersei SDK.
3//!
4//! Credits: this crate is a port / adaptation of rtk (Rust Token Killer) by
5//! Patrick Szymkowiak, <https://github.com/rtk-ai/rtk>, MIT licensed. See
6//! LICENSE for full attribution and the per-module mapping table.
7
8pub mod ansi;
9pub mod code;
10pub mod dispatch;
11pub mod level;
12pub mod toml_rules;
13pub mod truncate;
14
15pub use dispatch::compress_tool_output;
16pub use level::CompressionLevel;