Toposort: Topological Sort Library

Toposort is a highly efficient Zig library for performing topological sort on dependency graph. This small library is packed with the following features:

  • Building dependency graph from dependency data.
  • Performing topological sort on the dependency graph.
  • Generating dependence-free subsets within the topological order.
  • Cycle detection and cycle reporting.

GitHub - williamw520/toposort: Topological sort library in Zig.

This is my first Zig project intended for learning the ropes on publishing a Zig project. It might be over-engineered a bit. Please provide code critiques and other suggestions.

7 Likes