blob: 3cf6d2b3af7aa85b4bb24871ad86f473871d273c [file] [log] [blame]
//! 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;