//! `libgraph` is a Rust library providing a generic graph data structure and fundamental graph algorithms.
//!
//! It supports undirected graphs with optional metadata associated with edges, and includes various
//! graph generation methods as well as common traversal algorithms like Depth-First Search.
pub use Graph;
pub use dfs;
pub use traverse_tree;