simple_graph/
lib.rs

1//! Graph library with ability to serialize/deserialize Trivial Graph Format
2//!
3//! Besides serialize/deserialize library can deal with graph algorithms such
4//! as [Depth-first search (DFS)](https://en.wikipedia.org/wiki/Depth-first_search)
5//! and [Breadth-first search (BFS)](https://en.wikipedia.org/wiki/Breadth-first_search).
6//!
7//! If you are looking for example visit [`Graph`]
8
9#![feature(str_split_whitespace_remainder)]
10
11pub use error::*;
12pub use graph::*;
13pub use tgf::*;
14
15mod error;
16mod graph;
17mod tgf;