stackwise 0.1.0

Drop-in Rust stack usage analysis with JSON reports and an interactive local UI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Stackwise

Stackwise is a drop-in Rust CLI for analyzing emitted stack usage from final build artifacts.

```powershell
cargo install stackwise
cargo stackwise --release --open
```

It builds or reads your artifact, writes a versioned JSON report, and serves a local interactive UI with stack treemaps, call graphs, source snippets, and disassembly.

Use `--serve` when you want the local URL without opening a browser:

```powershell
cargo stackwise --release --serve
```

The analysis engine lives in `stackwise-core`.