Crate uvm_install_graph
source ·Expand description
uvm_install_graph is a helper library to visualize and traverse a unity installation manifest.
Re-exports§
pub use daggy::petgraph;
Structs§
- A simple directed acyclic graph representation of a unity 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
is a marker enum to mark nodes in theInstallGraph
based on the known installation status. The default is Unknown.
Traits§
- A walker is a traversal state, but where part of the traversal information is supplied manually to each next call.