graphlib 0.1.0

Graphlib is a simple and powerful rust library for the graph data-structure that is optimized for high churn environments (where the graph mutates often). It provides a simple api for manipulating and for interacting with graphs.
Documentation
1
2
3
4
5
6
7
8
9
// Copyright 2019 Octavian Oncescu

mod edge;
mod graph;
mod vertex_id;
pub mod iterators;

pub use graph::*;
pub use vertex_id::*;