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

/// Commit traversal
pub mod commit;

/// Tree traversal
pub mod tree;