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