Crate uvm_install_graph

Source
Expand description

uvm_install_graph is a helper library to visualize and traverse a api installation manifest.

Re-exports§

pub use daggy::petgraph;

Structs§

InstallGraph
A simple directed acyclic graph representation of a api version and it’s modules. This graph allows the traversal of to be installed modules in a topological order. It is also possible to query submodule and or dependencies for a given module.

Enums§

InstallStatus
InstallStatus is a marker enum to mark nodes in the InstallGraph based on the known installation status. The default is Unknown.
UnityComponent

Traits§

Walker
A walker is a traversal state, but where part of the traversal information is supplied manually to each next call.