tokmd-export-tree 1.9.0

Single-responsibility deterministic tree rendering from tokmd ExportData.
Documentation

tokmd-export-tree

Render deterministic trees from tokmd_types::ExportData.

Problem

Use this crate when nested path summaries need stable trees instead of ad hoc recursion or order drift.

What it gives you

  • render_analysis_tree(export)
  • render_handoff_tree(export, max_depth)
  • lexicographically ordered siblings via BTreeMap
  • analysis trees with file leaves
  • handoff trees with directory-only nodes and depth limiting

Quick use / integration notes

[dependencies]
tokmd-export-tree = { workspace = true }

Pass in ExportData and render the tree variant that matches your report or bundle.

Go deeper

Tutorial: Root README How-to: Recipes Reference: Source Explanation: Architecture