1//! # lgl 2//! 3//! Provides a small API for dealing with directed graphs. 4 5pub mod graph; 6 7#[cfg(test)] 8mod tests;