gryf 0.2.1

Graph data structure library with focus on convenience, versatility, correctness and performance.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Collection of various graph types implementations.
//!
//! These types usually wrap a [storage](crate::storage) and provide additional,
//! higher-level semantics and type-level guarantees.

mod generic;
mod path;

pub use generic::Graph;
pub use path::{Path, PathError};