1//! Various ways to traverse commit graphs and trees with implementations as iterator 2#![deny(missing_docs, rust_2018_idioms)] 3#![forbid(unsafe_code)] 4 5/// Commit traversal 6pub mod commit; 7 8/// Tree traversal 9pub mod tree;