git-traverse 0.22.2

Please use `gix-<thiscrate>` instead ('git' -> 'gix')
Documentation
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;