cu-profiler-report 0.2.0

Report rendering (table, JSON, Markdown, JUnit, HTML) for cu-profiler
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# cu-profiler-report

Report rendering for [`cu-profiler`](https://github.com/MerlijnW70/cu-profiler).

Renders a `cu_profiler_core::model::Report` to **table**, **JSON**, **Markdown**,
**JUnit XML**, or self-contained **HTML**. The crate holds no analysis logic — it
only formats already-computed data, keeping the raw-data/presentation boundary
clean.

```rust
use cu_profiler_report::{render, Format};
// let report = ...; // from cu-profiler-core
// let html = render(&report, Format::Html)?;
```

See the [project README](https://github.com/MerlijnW70/cu-profiler) for details.
Licensed under MIT OR Apache-2.0.