petgraph_live/lib.rs
1//! `petgraph-live` — graph cache, snapshot, and algorithms for petgraph 0.8.
2//!
3//! **Status: coming soon.** Implementation in progress.
4//!
5//! See [README](https://github.com/geronimo-iia/petgraph-live) for the roadmap.
6
7pub mod cache;
8pub mod connect;
9pub mod metrics;
10pub mod mst;
11pub mod shortest_path;
12
13#[cfg(feature = "snapshot")]
14pub mod snapshot;
15
16#[cfg(feature = "snapshot")]
17pub mod live;