dugong-graphlib 0.7.0

Graph data structure APIs used by dugong (port of dagrejs/graphlib).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Graph container APIs used by `dugong`.
//!
//! Baseline: `@dagrejs/graphlib` (see `docs/adr/0044-dugong-parity-and-testing.md`).
//!
//! This module contains the core `Graph` container plus a small set of helper algorithms
//! re-exported as `dugong_graphlib::alg` for Dagre compatibility.

mod adj_cache;
pub mod alg;
mod core;
mod edge_key;
mod entries;
mod options;

pub use core::{Graph, GraphError};
pub use edge_key::EdgeKey;
pub use options::GraphOptions;