git-traverse 0.8.0

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

/// Commit traversal
pub mod commit;

/// Tree traversal
pub mod tree;