petgraph 0.1.8

Graph data structure library. Provides graph types and graph algorithms.
docs.rs failed to build petgraph-0.1.8
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: petgraph-0.6.4

petgraph is a graph data structure library.

The most prominent type is Graph which is a directed or undirected graph with arbitrary mutable node and edge weights. It is based on rustc's graph implementation.

Petgraph also provides GraphMap which is an undirected hashmap-backed graph which only allows simple node identifiers (such as integers or references).