petgraph-live 0.2.0

Generic generation-keyed graph cache, disk snapshot, and graph algorithms for petgraph 0.8
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! `petgraph-live` — graph cache, snapshot, and algorithms for petgraph 0.8.
//!
//! **Status: coming soon.** Implementation in progress.
//!
//! See [README](https://github.com/geronimo-iia/petgraph-live) for the roadmap.

pub mod cache;
pub mod connect;
pub mod metrics;
pub mod mst;
pub mod shortest_path;

#[cfg(feature = "snapshot")]
pub mod snapshot;

#[cfg(feature = "snapshot")]
pub mod live;