gix_traverse/
lib.rs

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
5pub mod commit;
6
7/// Tree traversal
8pub mod tree;