xct2cli 0.1.0

Library and CLI for transforming Xcode Instruments .trace bundles (hotspots, callgraphs, annotated disassembly, PMI counters, heap allocations). Apple Silicon.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Output formatting helpers for human consumers. Inherent `to_text` /
//! `render` methods on the report types live in `annotate.rs` and
//! `text.rs` here.

pub mod annotate;
pub mod color;
pub mod text;

pub use annotate::AnnotateMode;
pub use annotate::AnnotateRenderOptions;
pub use color::ColorMode;
pub use color::Palette;