blob: 3cf6d2b3af7aa85b4bb24871ad86f473871d273c (
plain)
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;
|