stackwise 0.2.0

Drop-in Rust stack usage analysis with JSON reports and an interactive local UI
Documentation
# 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
```

Already have an executable? Analyze and open it directly:

```powershell
stackwise analyze .\program.exe --open
```

The analysis engine lives in `stackwise-core`.