1 2 3 4 5 6 7 8
//! Commit graph layout — types and lane-assignment algorithm for visual //! commit-graph rendering. pub mod ops; pub mod types; pub use ops::*; pub use types::*;