gamma 0.5.0

Graph primitives and traversals for Rust.
Documentation
mod error;
mod graph;
mod weighted_graph;
mod stable_graph;
mod index_graph;
mod hash_graph;

pub use error::Error;
pub use graph::Graph;
pub use weighted_graph::WeightedGraph;
pub use stable_graph::StableGraph;
pub use index_graph::IndexGraph;
pub use hash_graph::HashGraph;